Skip to content

Latest commit

 

History

History
71 lines (47 loc) · 1.38 KB

README.md

File metadata and controls

71 lines (47 loc) · 1.38 KB

React Pops Example

Netlify Status Demo

This is simple react project design to understand props more

Acknowledgements

This particular project is part of Bob Ziroll's react course on scrimba

Features

  • Makea a reusable components
  • How to pass a prop into a component
  • Recieving props in a components

Run Locally

Clone the project

  git clone https://github.com/bhantsi/react-props

Go to the project directory

  cd react-props

Install dependencies

  npm install

Start the server

  npm run start

Usage/Examples

import Contact from './components/Contact'

function App(props) {
  return (
  <div>
    <Contact
        name="John Doe"
        email="[email protected]"
     />
  </div>
  )
}
export default App;

Feedback

If you have any feedback, please reach out to us at [email protected]