0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-03-22 11:08:10 +00:00
Files
homebrewery/client/homebrew/main.jsx
Víctor Losada Hernández 8d18529c6d linting
2026-03-03 23:44:02 +01:00

7 lines
216 B
JavaScript

import { createRoot } from 'react-dom/client';
import Homebrew from './homebrew.jsx';
const props = window.__INITIAL_PROPS__ || {};
createRoot(document.getElementById('reactRoot')).render(<Homebrew {...props} />);