Website/components/button.js

9 lines
212 B
JavaScript
Raw Normal View History

2021-12-21 19:08:36 +00:00
export default function Button(props) {
{
if(props.color) {
return <button>{props.children}</button>
} else {
return <button>{props.children}</button>
}
}
}