mirror of
https://github.com/umami-software/umami.git
synced 2026-02-11 08:07:12 +01:00
Fixed sticky header scrolling. Updated settings button.
This commit is contained in:
parent
5262d19c8b
commit
bb99b3eba5
16 changed files with 109 additions and 134 deletions
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>
|
||||
);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue