13 lines
228 B
JavaScript
Raw Normal View History

2023-04-22 20:39:27 +08:00
import React from 'react';
import ChannelsTable from '../../components/table/ChannelsTable';
2023-04-22 20:39:27 +08:00
const File = () => {
return (
<div className="mt-[60px] px-2">
<ChannelsTable />
</div>
);
};
2023-04-22 20:39:27 +08:00
export default File;