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

12 lines
219 B
React
Raw Normal View History

2023-09-06 15:14:50 +00:00
export default function (props){
return(
<header>
2023-09-10 15:01:05 +00:00
<h2>
{props.super}
</h2>
2023-09-06 15:14:50 +00:00
<h1>
2023-09-10 15:01:05 +00:00
{props.heading}
2023-09-06 15:14:50 +00:00
</h1>
</header>
)
}