import React, { ComponentType } from 'react'; import styles from './styles'; import { Table } from 'components/table'; const BaseLayout: ComponentType = ({ children }) => (
  {children}  
); export default BaseLayout;