's'
This commit is contained in:
14
app/components/DevDebugTools.tsx
Normal file
14
app/components/DevDebugTools.tsx
Normal file
@@ -0,0 +1,14 @@
|
||||
"use client";
|
||||
|
||||
import { type ReactNode } from "react";
|
||||
import { DevDebugProvider } from "@/app/context/DevDebugContext";
|
||||
import DevDebugFab from "./DevDebugFab";
|
||||
|
||||
export default function DevDebugTools({ children }: { children: ReactNode }) {
|
||||
return (
|
||||
<DevDebugProvider>
|
||||
{children}
|
||||
<DevDebugFab />
|
||||
</DevDebugProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user