1
2import React from 'react';
3import { Canvas } from './Canvas';
4import { Backgrounds } from './Backgrounds';
5import { Navbar } from './Navbar';
6import { FloatingBar } from './FloatingBar';
7
8export const Editor: React.FC = () => {
9 return (
10 <div className="h-screen flex flex-col bg-gray-900">
11 <Navbar />
12
13 <div className="flex-1 flex overflow-hidden">
14 <Canvas />
15 <Backgrounds />
16 </div>
17
18 <FloatingBar />
19 </div>
20 );
21};