update build ok,
This commit is contained in:
@@ -0,0 +1,33 @@
|
|||||||
|
import { dayjs } from '@/lib/dayjs';
|
||||||
|
import type { LessonType } from '@/components/dashboard/lesson_type/ILessonType';
|
||||||
|
|
||||||
|
// import { helloworld } from '@/components/dashboard/lesson_type/helloworld';
|
||||||
|
// export const metadata = { title: `List | Customers | Dashboard | ${config.site.name}` } satisfies Metadata;
|
||||||
|
export const lessonTypesSampleData = [
|
||||||
|
{
|
||||||
|
id: 'USR-005',
|
||||||
|
name: 'Vocabulary',
|
||||||
|
type: 'vocabulary',
|
||||||
|
pos: 1,
|
||||||
|
visible: 'visible',
|
||||||
|
avatar: '/assets/avatar-5.png',
|
||||||
|
email: 'fran.perez@domain.com',
|
||||||
|
phone: '(815) 704-0045',
|
||||||
|
quota: 50,
|
||||||
|
status: 'active',
|
||||||
|
createdAt: dayjs().subtract(1, 'hour').toDate(),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 'USR-004',
|
||||||
|
name: 'Connectives',
|
||||||
|
type: 'connectives',
|
||||||
|
pos: 2,
|
||||||
|
visible: 'visible',
|
||||||
|
avatar: '/assets/avatar-4.png',
|
||||||
|
email: 'penjani.inyene@domain.com',
|
||||||
|
phone: '(803) 937-8925',
|
||||||
|
quota: 100,
|
||||||
|
status: 'active',
|
||||||
|
createdAt: dayjs().subtract(3, 'hour').toDate(),
|
||||||
|
},
|
||||||
|
] satisfies LessonType[];
|
Reference in New Issue
Block a user