説明なし

CapsuleInfo.ts 491B

123456789101112131415161718192021
  1. import ListCapsule from '../data/Capsule.json';
  2. export interface CapsuleInfo {
  3. id: number;
  4. title: string;
  5. content: string;
  6. photo: string;
  7. bioName1: string;
  8. bioId1: number;
  9. bioPic1: string;
  10. bioName2: string;
  11. bioId2: number;
  12. bioPic2: string;
  13. bioName3: string;
  14. bioId3: number;
  15. bioPic3: string;
  16. }
  17. export const getCapsules = () => ListCapsule;
  18. export const getCapsule = (id: number) => ListCapsule.find(c => c.id === id);