feat: support custom mobile header title

This commit is contained in:
Jean-Philippe Sirois
2019-11-21 03:22:45 -05:00
parent 55401af656
commit 70049d9e30
4 changed files with 26 additions and 6 deletions
+7 -1
View File
@@ -4,5 +4,11 @@ import { ResourcesSidebar } from "../../components/ResourcesSidebar"
import { ColumnLayout } from "../ColumnLayout"
export const ResourcesLayout: FC = ({ children }) => {
return <ColumnLayout sidebar={ResourcesSidebar} content={children} />
return (
<ColumnLayout
title="Resources"
sidebar={ResourcesSidebar}
content={children}
/>
)
}