import * as React from 'react';
import { LayerBasicExample } from './Layer.Basic.Example';
import { IDocPageProps } from '@fluentui/react/lib/common/DocPage.types';
import { LayerHostedExample } from './Layer.Hosted.Example';
import { LayerCustomizedExample } from './Layer.Customized.Example';
import { LayerNestedLayersExample } from './Layer.NestedLayers.Example';
const LayerBasicExampleCode = require('!raw-loader?esModule=false!@fluentui/react-examples/src/react/Layer/Layer.Basic.Example.tsx') as string;
const LayerHostedExampleCode = require('!raw-loader?esModule=false!@fluentui/react-examples/src/react/Layer/Layer.Hosted.Example.tsx') as string;
const LayerCustomizedExampleCode = require('!raw-loader?esModule=false!@fluentui/react-examples/src/react/Layer/Layer.Customized.Example.tsx') as string;
const LayerNestedLayersExampleCode = require('!raw-loader?esModule=false!@fluentui/react-examples/src/react/Layer/Layer.NestedLayers.Example.tsx') as string;
export const LayerPageProps: IDocPageProps = {
title: 'Layer',
componentName: 'Layer',
componentUrl: 'https://github.com/microsoft/fluentui/tree/master/packages/react/src/components/Layer',
examples: [
{
title: 'Basic layered content',
code: LayerBasicExampleCode,
view: ,
},
{
title: 'Using LayerHost to control projection',
code: LayerHostedExampleCode,
view: ,
},
{
title: 'Using Customizer to control the default layer behavior',
code: LayerCustomizedExampleCode,
view: ,
},
{
title: 'Nested Layers Example',
code: LayerNestedLayersExampleCode,
view: ,
},
],
overview: require('!raw-loader?esModule=false!@fluentui/react-examples/src/react/Layer/docs/LayerOverview.md'),
bestPractices: require('!raw-loader?esModule=false!@fluentui/react-examples/src/react/Layer/docs/LayerBestPractices.md'),
dos: require('!raw-loader?esModule=false!@fluentui/react-examples/src/react/Layer/docs/LayerDos.md'),
donts: require('!raw-loader?esModule=false!@fluentui/react-examples/src/react/Layer/docs/LayerDonts.md'),
isHeaderVisible: true,
isFeedbackVisible: true,
};