24 lines
449 B
TypeScript
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',
|
|
},
|
|
];
|