Skip to content

Instantly share code, notes, and snippets.

@Mohammad-Faisal
Created November 3, 2020 15:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Mohammad-Faisal/329710e1eda0c5e9a3fe9205b9794ed9 to your computer and use it in GitHub Desktop.
Save Mohammad-Faisal/329710e1eda0c5e9a3fe9205b9794ed9 to your computer and use it in GitHub Desktop.
import React from 'react';
import styles from './layout.module.css'
export default function Layout({children}) {
return <div className={styles.container}>{children}</div>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment