UNPKG

cra-template-psionic-ionic

Version:

A quick start Create React App template for Ionic, making use of the @psionic series of packages.

8 lines (6 loc) 211 B
import { createRoot } from 'react-dom/client'; import Root from './root/root'; import './robots.txt'; const container = document.getElementById('app'); const root = createRoot(container); root.render(<Root/>);