選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

DataCard.mock.js 159B

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