22 lines
363 B
TypeScript
Raw Normal View History

type TSubscriptions = {
id: number
createdAt: string
date: string
name: string
email: string
category: string
status: string
}
export const CONTENTS: TSubscriptions[] = [
{
id: 1,
createdAt: '24/10/2024',
date: '24/10/2024',
name: 'John Doe',
email: 'test@test.com',
category: 'Education',
status: 'Published',
},
]