import type { FC } from 'react';
import React from 'react';
import { Section } from '@theorchard/suite-components';

const GridTableWrapper: FC = ({ children }) => (
    <Section>
        <Section.Body>
            <Section.Table>{children}</Section.Table>
        </Section.Body>
    </Section>
);

export default GridTableWrapper;
