mirror of
https://github.com/ascribe/onion.git
synced 2025-01-03 10:25:08 +01:00
Start to work on custom landing
This commit is contained in:
parent
df5295dffd
commit
33d599b923
@ -11,7 +11,7 @@ let RouteHandler = Router.RouteHandler;
|
||||
let PrizeApp = React.createClass({
|
||||
render() {
|
||||
return (
|
||||
<div>
|
||||
<div class="whitelabel-prize">
|
||||
<RouteHandler />
|
||||
<Footer />
|
||||
<GlobalNotification />
|
||||
|
@ -1,12 +1,23 @@
|
||||
'use strict';
|
||||
|
||||
import React from 'react';
|
||||
import Router from 'react-router';
|
||||
|
||||
let Link = Router.Link;
|
||||
|
||||
|
||||
let Landing = React.createClass({
|
||||
render() {
|
||||
return (
|
||||
<div>
|
||||
Hello from landing
|
||||
<div class="hero">
|
||||
Yay art prize!
|
||||
</div>
|
||||
|
||||
<div class="buttons">
|
||||
<Link to="login">Login</Link>
|
||||
<Link to="signup">Signup</Link>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user