- Created manifest.yaml with Node.js runtime and routes - Set up package.json with React, TypeScript, Vite, and dependencies - Created TypeScript and Vite configuration files - Set up ESLint and Prettier - Created complete directory structure (frontend, backend, migrations) - Created initial database schema migration - Set up Express server with route handlers - Created frontend entry point files - Added version.txt with build 0.1.0.001
22 lines
447 B
TypeScript
22 lines
447 B
TypeScript
// BP_WB Editor - Main Entry Point
|
|
// This file will be implemented in WB-002: Basic Editor UI Layout
|
|
|
|
import React from 'react';
|
|
import ReactDOM from 'react-dom/client';
|
|
|
|
function App() {
|
|
return (
|
|
<div>
|
|
<h1>BP_WB Editor</h1>
|
|
<p>Editor will be implemented in WB-002</p>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
const root = ReactDOM.createRoot(document.getElementById('root')!);
|
|
root.render(
|
|
<React.StrictMode>
|
|
<App />
|
|
</React.StrictMode>
|
|
);
|
|
|