mirror of
https://github.com/rjNemo/devbook_ts
synced 2026-06-10 20:46:39 +00:00
* readme * specify landing must show app name * clean default project * write landing page layout * add static assets for styling * add Landing page unit test install fontawesome
14 lines
314 B
TypeScript
14 lines
314 B
TypeScript
import React from 'react';
|
|
import ReactDOM from 'react-dom';
|
|
import './static/css/style.min.css';
|
|
import App from './App';
|
|
import * as serviceWorker from './serviceWorker';
|
|
|
|
ReactDOM.render(
|
|
<React.StrictMode>
|
|
<App />
|
|
</React.StrictMode>,
|
|
document.getElementById('root'),
|
|
);
|
|
|
|
serviceWorker.unregister();
|