Props - Preact

Component

The answer is 42

Source Code

import { h } from "preact"

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

export default Props