- configure wrangler for CF account with D1 binding - add feedback API route with rate limiting and github issue creation - add feedback widget component - add project detail page with status/schedule/info tabs - add frappe-gantt type declarations - fix type errors for production build - add migration 0004 for feedback table
16 lines
228 B
TypeScript
Executable File
16 lines
228 B
TypeScript
Executable File
"use client"
|
|
|
|
import { FilesProvider } from "@/hooks/use-files"
|
|
|
|
export default function FilesLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode
|
|
}) {
|
|
return (
|
|
<FilesProvider>
|
|
{children}
|
|
</FilesProvider>
|
|
)
|
|
}
|