diff --git a/devserver/src/components/Playground.tsx b/devserver/src/components/Playground.tsx index 4075c91b3..386544bec 100644 --- a/devserver/src/components/Playground.tsx +++ b/devserver/src/components/Playground.tsx @@ -38,7 +38,7 @@ const createContextHelper = () => { return tempContext; }; -const Playground: React.FC<{}> = () => { +const Playground: React.FC = () => { const [dynamicTabs, setDynamicTabs] = React.useState([]); const [selectedTabId, setSelectedTab] = React.useState(testTabContent.id); const [codeContext, setCodeContext] = React.useState(createContextHelper());