Skip to content

Commit b221586

Browse files
committed
landing component
1 parent 4eb7338 commit b221586

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

server/client/src/components/App.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ import { connect } from 'react-redux';
44
import * as actions from '../actions';
55

66
import Header from './Header';
7+
import Landing from './Landing';
78
const Dashboard = () => <h2>Dashboard</h2>;
89
const SurveyNew = () => <h2>SurveyNew</h2>;
9-
const Landing = () => <h2>Landing</h2>;
1010

1111
class App extends Component {
1212
componentDidMount() {
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import React from 'react';
2+
3+
const Landing = () => {
4+
return (
5+
<div style={{ textAlign: 'center' }}>
6+
<h1>
7+
Emaily!
8+
</h1>
9+
Collect feedback form your users
10+
</div>
11+
);
12+
};
13+
14+
export default Landing;

0 commit comments

Comments
 (0)