Rename archive components

This commit is contained in:
Mark
2021-10-24 17:22:23 +01:00
parent 89fa0fd4a9
commit f252e81de2
9 changed files with 25 additions and 25 deletions
+14
View File
@@ -0,0 +1,14 @@
import React, { FC } from "react"
import { SpotlightsSidebar } from "../../components/SpotlightsSidebar"
import { ColumnLayout } from "../ColumnLayout"
export const SpotlightsLayout: FC = ({ children }) => {
return (
<ColumnLayout
title="Spotlights"
sidebar={SpotlightsSidebar}
content={children}
/>
)
}