mirror of
https://github.com/r-freeman/portfolio.git
synced 2024-11-13 17:05:42 +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
|
|
} |