Parent/Child Component

Parent/Child Component

It's a good practice to divide components into parent/child relation.

import React from "react"

// Header Component
function Header() {
    return (
        <header>This is the header</header>
    )
}

export default Header

Last updated

Was this helpful?