11 lines
242 B
TypeScript
11 lines
242 B
TypeScript
|
import hello from './hello'
|
||
|
import React from 'react';
|
||
|
import ReactDom from 'react-dom';
|
||
|
import {Headline} from './test';
|
||
|
import style from '../css/style.css';
|
||
|
hello();
|
||
|
|
||
|
ReactDom.render(
|
||
|
<Headline />,
|
||
|
document.getElementById("root")
|
||
|
)
|