feat: add basic webui
This commit is contained in:
15
apps/web/app/blog/layout.tsx
Normal file
15
apps/web/app/blog/layout.tsx
Normal file
@@ -0,0 +1,15 @@
|
||||
import { Toolbar } from '@konobangu/cms/components/toolbar';
|
||||
import type { ReactNode } from 'react';
|
||||
|
||||
type BlogLayoutProps = {
|
||||
children: ReactNode;
|
||||
};
|
||||
|
||||
const BlogLayout = ({ children }: BlogLayoutProps) => (
|
||||
<>
|
||||
{children}
|
||||
<Toolbar />
|
||||
</>
|
||||
);
|
||||
|
||||
export default BlogLayout;
|
||||
Reference in New Issue
Block a user