15 lines
380 B
TypeScript
15 lines
380 B
TypeScript
import styles from './App.module.css';
|
|
import LeftPanel from './components/LeftPanel/LeftPanel';
|
|
import CenterPanel from './components/CenterPanel/CenterPanel';
|
|
import RightPanel from './components/RightPanel/RightPanel';
|
|
|
|
export default function App() {
|
|
return (
|
|
<div className={styles.app}>
|
|
<LeftPanel />
|
|
<CenterPanel />
|
|
<RightPanel />
|
|
</div>
|
|
);
|
|
}
|