Fixed sticky header scrolling. Updated settings button.
This commit is contained in:
13
components/layout/ShareLayout.js
Normal file
13
components/layout/ShareLayout.js
Normal file
@@ -0,0 +1,13 @@
|
||||
import { Container } from 'react-basics';
|
||||
import Header from './Header';
|
||||
import Footer from './Footer';
|
||||
|
||||
export default function ShareLayout({ children }) {
|
||||
return (
|
||||
<Container>
|
||||
<Header />
|
||||
{children}
|
||||
<Footer />
|
||||
</Container>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user