14 lines
307 B
TypeScript
14 lines
307 B
TypeScript
import { format } from 'date-fns';
|
|
|
|
export const TestContent = {
|
|
eventDate: format(new Date(), 'yyyy-MM-dd'),
|
|
title: 'helloworld',
|
|
price: 123,
|
|
currency: 'HKD',
|
|
duration_m: 480,
|
|
ageBottom: 12,
|
|
ageTop: 48,
|
|
location: 'Hong Kong Island',
|
|
avatar: 'https://www.ionics.io/img/ionic-logo.png',
|
|
};
|