8 lines
182 B
TypeScript
8 lines
182 B
TypeScript
import Table from '@/features/ui/components/bootstrap-5/table'
|
|
|
|
function OLTable(props: React.ComponentProps<typeof Table>) {
|
|
return <Table {...props} />
|
|
}
|
|
|
|
export default OLTable
|