Web Frameworks
- Recently web framework libraries have gotten a lot more popular
- They let you build apps a lot faster
- They often help bind JavaScript data into the DOM
- ... and much more
export function Header({ name }) {
return (
<header>Hello { name }. Welcome to InstaFace</header>
)
}
9 / 10