import { colors } from '@0xproject/react-shared'; import * as React from 'react'; interface SidebarHeaderProps { title: string; iconUrl: string; } interface SidebarHeaderState {} export class SidebarHeader extends React.Component { public render(): React.ReactNode { return (
0x
docs
|
{this.props.title}
); } }