Skip to content

arturfriedrich/netflix-clone

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

60 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Netflix Clone

Simplified clone of the Streaming Platform: Netflix

Overview

My process

Built with

  • React
  • HTML
  • CSS
  • Javascript
  • Firebase

What I learned

  • Large React Based Architectures
  • Styled Components
  • Compound Components
  • Firebase (Firestore & Auth)
export default function Card({ children, ...restProps }) {
    const [showFeature, setShowFeature] = useState(false)
    const [itemFeature, setItemFeature] = useState(false)
    
    return (
      <FeatureContext.Provider value={{ showFeature, setShowFeature, itemFeature, setItemFeature }}>
        <Container {...restProps}>{children}</Container>
      </FeatureContext.Provider>
    )
}

Author

Supporting Scrimba

Since 2017, we have created over 20 free courses on Scrimba, and we're going to continue launching free courses. But to pay our bills, we have to charge once in a while. So if you've ever wanted to "give back" to Scrimba, you can do that by buying one of our paid courses

Happy Coding!

Screenshots

Screen Shot 2022-04-25 at 23 29 01 Screen Shot 2022-04-25 at 23 29 06 Screen Shot 2022-04-25 at 23 29 30 Screen Shot 2022-04-25 at 23 29 48 Screen Shot 2022-04-25 at 23 29 55