Skip to content

Commit 80869f7

Browse files
committed
Fix capitalization for consistency
Signed-off-by: Brian Warner <[email protected]>
1 parent e2cfad3 commit 80869f7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/FoundationLayout/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ interface Props {
1313
pageContext: any
1414
}
1515

16-
const index = ({ title, heroText, nextDoc, sideBarData, rawMarkdownBody, pageContext }: Props) => {
16+
const Index = ({ title, heroText, nextDoc, sideBarData, rawMarkdownBody, pageContext }: Props) => {
1717
return (
1818
<section>
1919
<div class="foundation">
@@ -45,4 +45,4 @@ const index = ({ title, heroText, nextDoc, sideBarData, rawMarkdownBody, pageCon
4545
)
4646
}
4747

48-
export default index
48+
export default Index

0 commit comments

Comments
 (0)