mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-09-06 08:16:03 +00:00
12 lines
224 B
TypeScript
12 lines
224 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;
|