Skip to content

Commit 4a1762c

Browse files
committed
Minor refactor for dashboard layout component
1 parent e0e0900 commit 4a1762c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

frontend/src/app/dashboard/layout.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import Navbar from "@/components/Navbar";
22
import { Toaster } from "@/components/ui/toaster";
3-
import { ReactNode } from "react";
3+
import React from "react";
44

5-
export default function DashboardLayout({ children }: { children: ReactNode }) {
5+
export default function DashboardLayout({ children }: { children: React.ReactNode }) {
66
return (
77
<>
88
<Navbar />

0 commit comments

Comments
 (0)