chore: rename docs to resources

This commit is contained in:
Jean-Philippe Sirois
2019-07-29 20:48:30 -04:00
parent a833613b21
commit 8f771e194e
20 changed files with 50 additions and 50 deletions
@@ -0,0 +1,18 @@
import React, { PropsWithChildren } from "react"
import * as SC from "./styles"
export interface ResourcesSidebarSectionProps {
readonly title: string
}
export function ResourcesSidebarSection({
title,
children,
}: PropsWithChildren<ResourcesSidebarSectionProps>) {
return (
<div>
<SC.SidebarTitle>{title}</SC.SidebarTitle>
{children}
</div>
)
}
@@ -0,0 +1,5 @@
import styled from "styled-components"
export const SidebarTitle = styled.h3`
text-transform: uppercase;
`