index.js 228 B

123456789101112
  1. import React from 'react';
  2. import ChannelsTable from '../../components/table/ChannelsTable';
  3. const File = () => {
  4. return (
  5. <div className="mt-[60px] px-2">
  6. <ChannelsTable />
  7. </div>
  8. );
  9. };
  10. export default File;