import React from 'react'; import Layout from 'antd/lib/layout'; import Typography from 'antd/lib/typography'; import Affix from 'antd/lib/affix'; import Button from 'antd/lib/button'; import { useDoc } from './useDoc'; export const DocSider = ({ children }: React.PropsWithChildren) => { const { open, toggle, content } = useDoc(); return ( {children} {!!open && Documentation