mirror of
https://github.com/r-freeman/portfolio.git
synced 2024-11-14 11:25:41 +00:00
13 lines
207 B
TypeScript
13 lines
207 B
TypeScript
|
import {ReactNode} from 'react'
|
||
|
|
||
|
export type Article = {
|
||
|
slug: string
|
||
|
title: string
|
||
|
date: string
|
||
|
description: string
|
||
|
}
|
||
|
|
||
|
export type Props = {
|
||
|
className?: string
|
||
|
children?: ReactNode
|
||
|
}
|