init students,
This commit is contained in:
@@ -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,
|
||||
};
|
Reference in New Issue
Block a user