Files
lettersoup-online/002_source/cms/src/app/dashboard/Sample/AddressCard/SampleAddresses.tsx
2025-04-22 12:20:21 +08:00

24 lines
449 B
TypeScript

'use client';
import type { Address } from '@/types/Address';
export const SampleAddresses: Address[] = [
{
id: 'ADR-001',
country: 'United States',
state: 'Michigan',
city: 'Lansing',
zipCode: '48933',
street: '480 Haven Lane',
primary: true,
},
{
id: 'ADR-002',
country: 'United States',
state: 'Missouri',
city: 'Springfield',
zipCode: '65804',
street: '4807 Lighthouse Drive',
},
];