* feat: generate new nx application * feat: add env variables & render a headline * feat: add netlify config * feat: add cypress projectId and delete unused files
14 lines
281 B
TypeScript
14 lines
281 B
TypeScript
import { StrictMode } from 'react';
|
|
import { createRoot } from 'react-dom/client';
|
|
|
|
import App from './app/app';
|
|
|
|
const rootElement = document.getElementById('root');
|
|
const root = rootElement && createRoot(rootElement);
|
|
|
|
root?.render(
|
|
<StrictMode>
|
|
<App />
|
|
</StrictMode>
|
|
);
|