build isue fixed
This commit is contained in:
parent
4a9948c6e0
commit
36f91a3917
@ -2,8 +2,19 @@
|
|||||||
|
|
||||||
import Link from 'next/link';
|
import Link from 'next/link';
|
||||||
|
|
||||||
|
interface City {
|
||||||
|
name: string;
|
||||||
|
primary?: boolean;
|
||||||
|
href?: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface Region {
|
||||||
|
name: string;
|
||||||
|
cities: City[];
|
||||||
|
}
|
||||||
|
|
||||||
export default function StainingTerritory() {
|
export default function StainingTerritory() {
|
||||||
const regions = [
|
const regions: Region[] = [
|
||||||
{
|
{
|
||||||
name: "Waterloo Region",
|
name: "Waterloo Region",
|
||||||
cities: [
|
cities: [
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user