import React, { ReactNode } from 'react'

type TTableSectionProps = {
  children: ReactNode;
}

const TableSection = ({
  children,
}: TTableSectionProps) => {
  return (
    <div className='flex flex-col gap-8'>{children}</div>
  )
}

export default TableSection;