'use client' import { ProjectProvider } from '../context/Project/provider' import '../styles/globals.css' import { ipc } from '../wailsjs/wailsjs/go/models' type AppLayoutProps = { children: React.ReactNode } export default function MainAppLayout({ children }: AppLayoutProps) { return {children} }