import React from 'react'; import SandboxContextProvider from '../SandboxContextProvider'; import MainLayout from './layouts/MainLayout'; import { ThemeProvider, Theme } from './theme'; interface Props { components: Array; logo?: React.ReactNode; theme?: Theme; plugins?: Array; } function Sandbox(props: Props) { const {components, logo, theme, plugins} = props; return ( ); } export default Sandbox;