We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4eb7338 commit b221586Copy full SHA for b221586
server/client/src/components/App.js
@@ -4,9 +4,9 @@ import { connect } from 'react-redux';
4
import * as actions from '../actions';
5
6
import Header from './Header';
7
+import Landing from './Landing';
8
const Dashboard = () => <h2>Dashboard</h2>;
9
const SurveyNew = () => <h2>SurveyNew</h2>;
-const Landing = () => <h2>Landing</h2>;
10
11
class App extends Component {
12
componentDidMount() {
server/client/src/components/Landing.js
@@ -0,0 +1,14 @@
1
+import React from 'react';
2
+
3
+const Landing = () => {
+ return (
+ <div style={{ textAlign: 'center' }}>
+ <h1>
+ Emaily!
+ </h1>
+ Collect feedback form your users
+ </div>
+ );
+};
13
14
+export default Landing;
0 commit comments