Skip to content

Latest commit

 

History

History
66 lines (45 loc) · 2.15 KB

README.md

File metadata and controls

66 lines (45 loc) · 2.15 KB

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