mirror of
https://github.com/aljazceru/rabbit.git
synced 2025-12-18 22:44:26 +01:00
feat: support 0-9 column selection
This commit is contained in:
@@ -124,21 +124,18 @@ const Home: Component = () => {
|
||||
<div class="flex h-screen w-screen flex-row overflow-hidden">
|
||||
<SideBar />
|
||||
<div class="flex h-full flex-row overflow-y-hidden overflow-x-scroll">
|
||||
<Column name="ホーム" width="widest">
|
||||
<Column name="ホーム" columnIndex={1} width="widest">
|
||||
<Timeline events={followingsPosts()} />
|
||||
</Column>
|
||||
<Column name="通知" width="medium">
|
||||
<Column name="通知" columnIndex={2} width="medium">
|
||||
<Notification events={notifications()} />
|
||||
</Column>
|
||||
<Column name="日本サーバ" width="medium">
|
||||
<Column name="日本サーバ" columnIndex={3} width="medium">
|
||||
<Timeline events={localTimeline()} />
|
||||
</Column>
|
||||
<Column name="自分の投稿" width="medium">
|
||||
<Column name="自分の投稿" colmnIndex={4} lastColumn width="medium">
|
||||
<Timeline events={myPosts()} />
|
||||
</Column>
|
||||
<Column name="テスト" width="medium">
|
||||
<></>
|
||||
</Column>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user