Props
import { Props } from "atomico";
function myComponent(props: Props<typeof myComponent>) { // {checked: boolean}
return <host>Hello {props.checked?"Yes":"No"}</host>
}
myComponent.props = {
checked: Boolean,
}Last updated
Was this helpful?
