diff --git a/src/features/output/components/OSDFields.tsx b/src/features/output/components/OSDFields.tsx index 56e2954..c79a704 100644 --- a/src/features/output/components/OSDFields.tsx +++ b/src/features/output/components/OSDFields.tsx @@ -29,7 +29,6 @@ const OSDFields = ({ isOSDLoading }: OSDFieldsProps) => {
-

OSD Options

{includeKeys.map((key) => ( diff --git a/src/features/output/components/OSDOptionsCard.tsx b/src/features/output/components/OSDOptionsCard.tsx index 5eb0c61..dc0f924 100644 --- a/src/features/output/components/OSDOptionsCard.tsx +++ b/src/features/output/components/OSDOptionsCard.tsx @@ -1,6 +1,8 @@ import Card from "../../../ui/Card"; import CardHeader from "../../../ui/CardHeader"; import OSDFields from "./OSDFields"; +import { Tab, TabList, TabPanel, Tabs } from "react-tabs"; +import "react-tabs/style/react-tabs.css"; type OSDOptionsCardProps = { isOSDLoading: boolean; @@ -10,7 +12,18 @@ const OSDOptionsCard = ({ isOSDLoading }: OSDOptionsCardProps) => { return ( - + + + OSD Settings + payload Settings + + + + + +
payload settings
+
+
); };