aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/Main
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2021-12-22 14:29:08 +0100
committerArmand Philippot <git@armandphilippot.com>2021-12-22 14:32:57 +0100
commitfe5d74a864ddd1429b0753a3984c45b2392176d2 (patch)
tree43780acb909d3907ae0cc2143e77e79c07572890 /src/components/Main
parent139b3a252c9f90de603be1a98e3186b359353541 (diff)
chore: add a skip to content link
Diffstat (limited to 'src/components/Main')
-rw-r--r--src/components/Main/Main.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/Main/Main.tsx b/src/components/Main/Main.tsx
index cc47443..8b2e822 100644
--- a/src/components/Main/Main.tsx
+++ b/src/components/Main/Main.tsx
@@ -3,7 +3,7 @@ import styles from './Main.module.scss';
const Main: FunctionComponent = ({ children }) => {
return (
- <main className={styles.wrapper}>
+ <main id="main" className={styles.wrapper}>
<div className={styles.body}>{children}</div>
</main>
);