Очень грубо раскидал верстку на компоненты

This commit is contained in:
SleepWalker
2016-01-16 14:06:22 +02:00
parent e01259d517
commit 0f5781a3a7
10 changed files with 286 additions and 204 deletions

View File

@@ -1,11 +1,16 @@
import React, { Component } from 'react';
import SignInPage from 'pages/auth/SignInPage';
import AuthPage from 'pages/auth/AuthPage';
import Login from 'components/auth/Login';
export default class IndexPage extends Component {
displayName = 'IndexPage';
render() {
return (
<SignInPage />
<AuthPage>
<Login />
</AuthPage>
);
}
}