Tailwind config and basic services
This commit is contained in:
parent
f1e90c4dd2
commit
be6467cd2c
41 changed files with 581 additions and 102 deletions
|
|
@ -1,7 +1,13 @@
|
|||
import type { Component } from "solid-js";
|
||||
import CommunityView from "../CommunityView/CommunityView";
|
||||
|
||||
const ChannelView: Component = () => {
|
||||
return <div class="bg-stone-900 w-64 shadow-panel z-20"></div>;
|
||||
return (
|
||||
<div class="bg-stone-900 w-96 shadow-panel z-20">
|
||||
<CommunityView />
|
||||
<div></div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default ChannelView;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue