create-farm 2.0.1

Create Farm cli tool
Documentation
1
2
3
4
5
6
7
8
9
import { createRoot } from 'react-dom/client';
import { Main } from './main';
import './index.css'


const container = document.querySelector('#root') as Element;
const root = createRoot(container);

root.render(<Main />);