fix(v2): don't display footer on docs page

This commit is contained in:
Yangshun Tay 2019-03-02 21:03:58 -08:00
parent b13e468b16
commit 70d185d862
3 changed files with 3 additions and 4 deletions

View file

@ -7,7 +7,6 @@
import React from 'react';
import Footer from '@theme/Footer'; // eslint-disable-line
import Navbar from '@theme/Navbar'; // eslint-disable-line
import './styles.css';
@ -17,7 +16,6 @@ function Layout({children}) {
<div>
<Navbar />
{children}
<Footer />
</div>
);
}