2025-04-24 13:11:28 +08:00

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