init teachers,

This commit is contained in:
louiscklaw
2025-04-24 02:12:07 +08:00
parent d81b3e9a9e
commit 7a33549a79
25 changed files with 3198 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
// RULES:
// default variable value for customer
// empty valur for customer
import { dayjs } from '@/lib/dayjs';
import type { Customer } from './type.d';
export const defaultCustomer: Customer = {
id: '',
name: '',
avatar: undefined,
email: '',
phone: undefined,
quota: 0,
status: 'pending',
createdAt: dayjs().toDate(),
};
export const emptyLpCategory: Customer = {
...defaultCustomer,
};