mirror of
https://github.com/Steffo99/festa.git
synced 2024-12-22 22:54:22 +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) => {
|
export const ViewContent = memo((props: ViewContentProps) => {
|
||||||
return (
|
return (
|
||||||
<main className={style.viewContent}>
|
<main className={style.viewContent}>
|
||||||
<h2 className={style.viewContentTitle}>
|
<h1 className={style.viewContentTitle}>
|
||||||
{props.title}
|
{props.title}
|
||||||
</h2>
|
</h1>
|
||||||
<div className={style.viewContentContent}>
|
<div className={style.viewContentContent}>
|
||||||
{props.content}
|
{props.content}
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue