- added OSD configuration components and hooks for managing overlay settings
This commit is contained in:
18
src/features/output/components/OSDOptionsCard.tsx
Normal file
18
src/features/output/components/OSDOptionsCard.tsx
Normal file
@@ -0,0 +1,18 @@
|
||||
import Card from "../../../ui/Card";
|
||||
import CardHeader from "../../../ui/CardHeader";
|
||||
import OSDFields from "./OSDFields";
|
||||
|
||||
type OSDOptionsCardProps = {
|
||||
isOSDLoading: boolean;
|
||||
};
|
||||
|
||||
const OSDOptionsCard = ({ isOSDLoading }: OSDOptionsCardProps) => {
|
||||
return (
|
||||
<Card className="p-4 flex-1">
|
||||
<CardHeader title="OSD Payload Options" />
|
||||
<OSDFields isOSDLoading={isOSDLoading} />
|
||||
</Card>
|
||||
);
|
||||
};
|
||||
|
||||
export default OSDOptionsCard;
|
||||
Reference in New Issue
Block a user