mirror of
https://github.com/naturalcrit/homebrewery.git
synced 2026-09-20 21:02:58 +00:00
9 lines
349 B
React
9 lines
349 B
React
import { createRoot } from 'react-dom/client';
|
|
import Homebrew from './homebrew.jsx';
|
|
import { bootstrapAnchorPositioningPolyfill } from '@components/anchorPositioningPolyfill.js';
|
|
|
|
const props = window.__INITIAL_PROPS__ || {};
|
|
|
|
createRoot(document.getElementById('reactRoot')).render(<Homebrew {...props} />);
|
|
bootstrapAnchorPositioningPolyfill();
|