[docs,refactor][xs]: move to 2 space indenting in jsx components.

This commit is contained in:
Rufus Pollock
2021-05-25 19:00:41 +02:00
parent fe13333e5c
commit cbab921e87
2 changed files with 53 additions and 53 deletions

View File

@@ -1,16 +1,16 @@
import styles from '../../styles/Home.module.css'
export default function Footer() {
return (
<footer className={styles.footer}>
<a
href="https://www.datopian.com/"
target="_blank"
rel="noopener noreferrer"
>
Built by{' '}
<img src="/datopian-logo.png" alt="Datopian Logo" className={styles.logo} />
</a>
</footer>
)
return (
<footer className={styles.footer}>
<a
href="https://www.datopian.com/"
target="_blank"
rel="noopener noreferrer"
>
Built by{' '}
<img src="/datopian-logo.png" alt="Datopian Logo" className={styles.logo} />
</a>
</footer>
)
}