diff --git a/application.tsx b/application.tsx new file mode 100644 index 0000000..c350bf1 --- /dev/null +++ b/application.tsx @@ -0,0 +1,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 { + render() { + return
+
+
+

Playable List

+ +
+
+

Animation

+ +
+
+

Choosing List

+ +
+
+
; + + } +} diff --git a/footer.tsx b/footer.tsx new file mode 100644 index 0000000..93c443b --- /dev/null +++ b/footer.tsx @@ -0,0 +1,12 @@ +import * as React from "react"; + +export interface ILink { text: string, + link: string } + +export class Footer extends React.Component { + render() { + return + } +} diff --git a/header.tsx b/header.tsx new file mode 100644 index 0000000..11d83df --- /dev/null +++ b/header.tsx @@ -0,0 +1,9 @@ +import * as React from "react"; + +export interface IText { text: string } + +export class Header extends React.Component { + render() { + return

{this.props.text}

+ } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..0340966 --- /dev/null +++ b/package.json @@ -0,0 +1,30 @@ +{ + "name": "proj", + "version": "1.0.0", + "description": "ejemplo", + "main": "index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1", + "start": "webpack", + "start:dev": "webpack-dev-server" + }, + "author": "Jotaoncode", + "license": "ISC", + "dependencies": { + "classnames": "^2.2.5", + "events": "^1.1.1", + "flux": "^2.1.1", + "material-ui": "^0.15.1", + "react": "^15.2.0", + "react-addons-update": "^15.2.1", + "react-dom": "^15.2.0", + "ts-eventemitter": "^0.1.0" + }, + "devDependencies": { + "retyped-classnames-tsd-ambient": "0.0.0-0", + "source-map-loader": "^0.1.5", + "ts-loader": "^0.8.2", + "webpack": "^1.13.1", + "webpack-dev-server": "^1.14.1" + } +} \ No newline at end of file