Files
new-api/web/src/pages/Channel/index.js

13 lines
223 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-[64px]">
<ChannelsTable />
</div>
);
};
2023-04-22 20:39:27 +08:00
export default File;