-
Notifications
You must be signed in to change notification settings - Fork 10
/
application.tsx
30 lines (27 loc) · 1.05 KB
/
application.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import * as React from "react";
import { Animation } from './animation';
import { ListToPlay } from './playable/playables';
import { FullList } from './animations/fullList';
import { Header } from './header';
import { Footer } from './footer';
export interface ApplicationProps { }
export class Application extends React.Component<ApplicationProps, {}> {
render() {
return <div>
<Header text="My first React Application"/>
<section className="list-to-play">
<h1>Playable List</h1>
<ListToPlay/>
</section>
<section className="animation">
<h1>Animation</h1>
<Animation />
</section>
<section className="full-list">
<h1>Choosing List</h1>
<FullList/>
</section>
<Footer text="Learning ReactJS" link="https://github.com/reactjs"/>
</div>;
}
}