13 lines
224 B
JavaScript
13 lines
224 B
JavaScript
import { v4 as uuid } from 'uuid';
|
|
|
|
export const defaultCertificate = {
|
|
courseTitle: '',
|
|
signatories: [{
|
|
id: `local-${uuid()}`,
|
|
name: '',
|
|
title: '',
|
|
organization: '',
|
|
signatureImagePath: '',
|
|
}],
|
|
};
|