mirror of
https://github.com/mgerb/ps-launcher
synced 2026-01-09 01:52:57 +00:00
10 lines
239 B
TypeScript
10 lines
239 B
TypeScript
import React from 'react';
|
|
import ReactDOM from 'react-dom';
|
|
import { Wrapper } from './Wrapper/Wrapper';
|
|
import 'babel-polyfill';
|
|
|
|
// base styling
|
|
import './scss/index.scss';
|
|
|
|
ReactDOM.render(<Wrapper />, document.getElementById('app'));
|