October 2019
Intermediate to advanced
426 pages
11h 49m
English
After implementing all components, in order to reproduce the mock-up, we now only have to put everything together in the App component. Then, we will have successfully reproduced the mock-up!
Let's start modifying the App component, and putting our app together:
import React from 'react'import PostList from './post/PostList'import CreatePost from './post/CreatePost'import UserBar from './user/UserBar'
const user = 'Daniel Bugl'const posts = [ { title: 'React Hooks', content: 'The greatest thing since sliced bread!', author: 'Daniel Bugl' },Read now
Unlock full access