mirror of
https://github.com/openswarm-ai/openswarm.git
synced 2026-09-14 05:37:40 +02:00
8 lines
220 B
TypeScript
8 lines
220 B
TypeScript
import React from 'react';
|
|
import { createRoot } from 'react-dom/client';
|
|
import './styles/tailwind.css';
|
|
import Main from './app/Main';
|
|
|
|
const root = document.getElementById('root')!;
|
|
createRoot(root).render(<Main />);
|