mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-04-30 10:56:29 +02:00
12 lines
No EOL
266 B
TypeScript
12 lines
No EOL
266 B
TypeScript
'use client';
|
|
|
|
import { BuildAssistantSection } from "./components/build-assistant-section";
|
|
|
|
|
|
export default function App() {
|
|
return (
|
|
<div className="min-h-screen bg-white dark:bg-gray-900">
|
|
<BuildAssistantSection />
|
|
</div>
|
|
);
|
|
} |