import React from 'react' import { ForwardedRef, forwardRef } from 'react' import { TableProps } from './types' import { TableStyle } from './styles' function Table(props: TableProps, ref?: ForwardedRef) { return } export default forwardRef(Table)