nitro-react/src/index.tsx

14 lines
316 B
TypeScript
Raw Normal View History

2021-12-04 07:25:47 +01:00
import { library } from '@fortawesome/fontawesome-svg-core';
import { fas } from '@fortawesome/free-solid-svg-icons';
import React from 'react';
import ReactDOM from 'react-dom';
2021-04-14 20:24:24 +02:00
import { App } from './App';
import './index.scss';
2021-12-04 07:25:47 +01:00
library.add(fas);
ReactDOM.render(
2021-04-14 20:24:24 +02:00
<App />,
document.getElementById('root')
);