import React from 'react'; import {Animated, StyleSheet, View} from 'react-native'; import Menu from '../../Menu'; import UIFrame from '../../Frame'; import useSandbox from '../../../useSandbox'; import { useTheme } from '../../theme'; import { MainLayoutProps } from './MainLayout.types'; const styles = StyleSheet.create({ container: { flex: 1, flexDirection: 'row', height: '100%', }, menuWrapper: { width: 250, borderRightWidth: 1, textAlign: 'left', height: '100%', overflowY: 'auto', }, frame: { flexGrow: 1, }, }); function MainTabletLayout(props: MainLayoutProps) { const {components, logo} = props; const {activeComponent, setActiveComponent} = useSandbox(); const { colors } = useTheme(); return ( ); } export default MainTabletLayout;