Changed code indentation

This commit is contained in:
Antonello Zanini
2022-11-18 17:02:01 +01:00
parent 37e23c3932
commit 9ca399b85d
3 changed files with 5 additions and 5 deletions

View File

@@ -1,4 +1,4 @@
import Header from "./Header";
import Header from "./Header"
import Meta from "./Meta"
import styles from "../styles/Layout.module.css"
@@ -18,5 +18,5 @@ export default function Layout(props) {
<Header siteTitle={props.siteTitle} />
<div className={styles.content}>{props.children}</div>
</section>
);
)
}