react use props in functional component code example

Example 1: function component with props

import React from "react"

function Checkbox(props){
    return (
        
) } export default Checkbox

Example 2: functional component react with state

import React, { useState } from 'react';

function Example() {
  // Declare a new state variable, which we'll call "count"  const [count, setCount] = useState(0);
  return (
    

You clicked {count} times

); }

Example 3: how to use props in functional component in react

import React, { useState } from 'react';
import './App.css';
import Todo from './components/Todo'



function App() {
    const [todos, setTodos] = useState([
        {
          id: 1,
          title: 'This is first list'
        },
        {
          id: 2,
          title: 'This is second list'
        },
        {
          id: 3,
          title: 'This is third list'
        },
    ]);

return (
        

//This is how i'm passing props in parent component
); } export default App;

Tags:

Misc Example