mirror of
https://github.com/Stone-Red-Code/website.git
synced 2026-09-05 23:43:37 +02:00
15 lines
326 B
TypeScript
15 lines
326 B
TypeScript
import React, { FC } from "react"
|
|
|
|
import { ArchivesSidebar } from "../../components/ArchivesSidebar"
|
|
import { ColumnLayout } from "../ColumnLayout"
|
|
|
|
export const ArchivesLayout: FC = ({ children }) => {
|
|
return (
|
|
<ColumnLayout
|
|
title="Archives"
|
|
sidebar={ArchivesSidebar}
|
|
content={children}
|
|
/>
|
|
)
|
|
}
|