// 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 (

BP_WB Editor

Editor will be implemented in WB-002

); } const root = ReactDOM.createRoot(document.getElementById('root')!); root.render( );