You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

DataCard.mock.ts 167B

12345678910
  1. const base = {
  2. data: { name: 'John Doe', age: 30, gender: 'male' },
  3. t: (text: string) => {
  4. return text;
  5. },
  6. };
  7. export const mockDataCardProps = {
  8. base,
  9. };