added channel creation

This commit is contained in:
Ren Amamiya
2023-04-10 09:43:30 +07:00
parent fb700b1878
commit 549cc991a9
6 changed files with 147 additions and 330 deletions

View File

@@ -0,0 +1,9 @@
import { ChannelModal } from '@components/channels/channelModal';
export default function ChannelList() {
return (
<div className="flex flex-col gap-px">
<ChannelModal />
</div>
);
}