import * as React from 'react'; import { AnimationClassNames, mergeStyles, getTheme } from 'office-ui-fabric-react/lib/Styling'; import { Layer } from 'office-ui-fabric-react/lib/Layer'; import { Toggle } from 'office-ui-fabric-react/lib/Toggle'; import { useBoolean } from '@uifabric/react-hooks'; export const LayerBasicExample: React.FunctionComponent = () => { const [showLayer, { toggle: toggleShowLayer }] = useBoolean(false); const content =