sub-manager-frontend/src/Components/PageHeader.jsx

9 lines
151 B
React
Raw Normal View History

2023-09-06 15:14:50 +00:00
export default function (props){
return(
<header>
<h1>
{props.text}
</h1>
</header>
)
}