portfolio/types/index.ts

13 lines
207 B
TypeScript
Raw Normal View History

2023-01-14 19:31:05 +00:00
import {ReactNode} from 'react'
export type Article = {
slug: string
title: string
date: string
description: string
}
export type Props = {
className?: string
children?: ReactNode
}