mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-09-07 08:26:15 +00:00
12 lines
233 B
TypeScript
12 lines
233 B
TypeScript
import React from 'react';
|
|
import { Toaster } from '@repo/ui/shadcn/sonner';
|
|
|
|
function Layout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<div>
|
|
{children} <Toaster />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default Layout;
|