scrimba
Netflix in React JS
Building out the Feature Component
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Building out the Feature Component
AboutCommentsNotes
Building out the Feature Component
Expand for more info
src
pages
home.js
run
preview
console
import React from 'react';
import { OptForm } from '../components';
import { FaqsContainer } from '../containers/faqs';
import { JumbotronContainer } from '../containers/jumbotron';
import { FooterContainer } from '../containers/footer';
import { HeaderContainer } from '../containers/header';

export default function Home() {
return (
<>
<HeaderContainer>
<OptForm>
<OptForm.Input placeholder="Email Address" />
<OptForm.Button>Try it now</OptForm.Button>
<OptForm.Break />
<OptForm.Text>Ready to watch? Enter your email to create or restart
your membership.</OptForm.Text>
</OptForm>
</HeaderContainer>

<JumbotronContainer />
<FaqsContainer />
<FooterContainer />
</>
)
}
Console
/
-7:15