Files
website/src/components/Docs/SidebarSection/index.tsx
T
2019-07-27 15:52:25 -04:00

17 lines
361 B
TypeScript

import React from "react";
import { SidebarTitle } from "./style";
export interface SidebarSectionProps {
readonly title: string;
}
const SidebarSection = ({ title, children }: React.PropsWithChildren<SidebarSectionProps>) => {
return (
<div>
<SidebarTitle>{title}</SidebarTitle>
{children}
</div>
)
}
export default SidebarSection;