refactor: use tabs instead of spaces

This commit is contained in:
Sonny
2024-10-07 01:33:59 +02:00
parent f425decf2c
commit eea9732100
197 changed files with 5206 additions and 5209 deletions

View File

@@ -1,11 +1,11 @@
export default function NotFound() {
return (
<>
<div className="container">
<div className="title">Page not found</div>
return (
<>
<div className="container">
<div className="title">Page not found</div>
<span>This page does not exist.</span>
</div>
</>
);
<span>This page does not exist.</span>
</div>
</>
);
}

View File

@@ -1,11 +1,11 @@
export default function ServerError(props: { error: any }) {
return (
<>
<div className="container">
<div className="title">Server Error</div>
return (
<>
<div className="container">
<div className="title">Server Error</div>
<span>{props.error.message}</span>
</div>
</>
);
<span>{props.error.message}</span>
</div>
</>
);
}