diff options
author | 2021-09-12 23:11:25 +0200 | |
---|---|---|
committer | 2021-09-12 23:11:25 +0200 | |
commit | 16dab011c575eaf96630cab406ec2d8086403d0b (patch) | |
tree | af53af45b8cb52317cef3d4d59216b1c58d8d8ff /components/Layout.js | |
parent | d79f4c0bf3dae76eaae0d36469f5b279272d6944 (diff) | |
download | my_apps-16dab011c575eaf96630cab406ec2d8086403d0b.tar.gz my_apps-16dab011c575eaf96630cab406ec2d8086403d0b.tar.bz2 my_apps-16dab011c575eaf96630cab406ec2d8086403d0b.zip |
added youtube & player apps
Diffstat (limited to 'components/Layout.js')
-rw-r--r-- | components/Layout.js | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/components/Layout.js b/components/Layout.js index c4cc553..572e961 100644 --- a/components/Layout.js +++ b/components/Layout.js @@ -5,9 +5,7 @@ import useSettings from 'hooks/useSettings' import PropTypes from 'prop-types' const Layout = ({ - children, - apps, - setApps + children }) => { const { settings } = useSettings() @@ -18,7 +16,7 @@ const Layout = ({ <main> <div className='container'>{children}</div> </main> - <Header apps={apps} setApps={setApps} /> + <Header /> <Popup /> </section> ) |