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>
|
|
|
|
)
|
|
|
|
}
|