mirror of
https://github.com/Steffo99/festa.git
synced 2024-12-22 14:44:21 +00:00
Make the title of the ViewContent a h1
This commit is contained in:
parent
e85363c4f3
commit
4b70723007
1 changed files with 2 additions and 2 deletions
|
@ -13,9 +13,9 @@ export type ViewContentProps = {
|
|||
export const ViewContent = memo((props: ViewContentProps) => {
|
||||
return (
|
||||
<main className={style.viewContent}>
|
||||
<h2 className={style.viewContentTitle}>
|
||||
<h1 className={style.viewContentTitle}>
|
||||
{props.title}
|
||||
</h2>
|
||||
</h1>
|
||||
<div className={style.viewContentContent}>
|
||||
{props.content}
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue