mirror of
https://github.com/docmost/docmost.git
synced 2026-07-24 22:52:51 +10:00
add recent changes tab to home
This commit is contained in:
@@ -1,12 +1,17 @@
|
||||
import { useAtom } from 'jotai';
|
||||
import { currentUserAtom } from '@/features/user/atoms/current-user-atom';
|
||||
import { Container } from '@mantine/core';
|
||||
import HomeTabs from '@/features/home/components/home-tabs';
|
||||
|
||||
// Hello {currentUser && currentUser.user.name}!
|
||||
export default function Home() {
|
||||
const [currentUser] = useAtom(currentUserAtom);
|
||||
|
||||
return (
|
||||
<>
|
||||
Hello {currentUser && currentUser.user.name}!
|
||||
</>
|
||||
<Container size={'800'} pt="xl">
|
||||
|
||||
<HomeTabs/>
|
||||
|
||||
</Container>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user