Props - React

Component

The answer is 42

Source Code

import React from "react"

const Props = ({ answer = "a mystery" }) => <p>The answer is {answer}</p>

export default Props