doc/fields: add section for nillable-required fields

This commit is contained in:
Ariel Mashraki
2022-08-13 18:24:28 +03:00
committed by Ariel Mashraki
parent b207429f15
commit 8fc8d65a16
22 changed files with 3300 additions and 4530 deletions

View File

@@ -9,9 +9,8 @@
*/
const React = require('react');
import LayoutProviders from '@theme/LayoutProviders';
import LayoutProvider from '@theme/Layout/Provider';
import Footer from '@theme/Footer';
import Navbar from '@theme/Navbar';
import Link from '@docusaurus/Link';
@@ -191,12 +190,12 @@ class Index extends React.Component {
}
export default function (props) {
return <LayoutProviders>
return <LayoutProvider>
{/*<div className={"section_index"}>*/}
{/* <Navbar/>*/}
{/*</div>*/}
<HomeNav />
<Index {...props} />
<Footer/>
</LayoutProviders>;
</LayoutProvider>;
};