// Direction C — Dossier Industriel, rendered full-width across the viewport.
// The DesignCanvas/Artboard wrappers from the prototype are dropped — this is
// the implementation, not the viewer.

function App() {
  return (
    <div style={{ width: '100%', minHeight: '100vh', background: '#f6f3ec' }}>
      <window.WireframeC />
    </div>
  );
}

ReactDOM.createRoot(document.getElementById('root')).render(<App />);
