Added new trip plan creator and removed visit count stores

This commit is contained in:
Sean Morley
2024-05-06 23:13:32 +00:00
parent 75da1f4cc6
commit 01865951ac
19 changed files with 967 additions and 522 deletions

View File

@@ -1,5 +0,0 @@
import { writable } from "svelte/store";
let value = 0;
export const visitCount = writable(value);

View File

@@ -10,3 +10,12 @@ export interface Adventure {
imageUrl?: string | undefined;
date?: string | undefined;
}
export interface Trip {
id: number;
name: string;
description: string;
startDate: string;
endDate: string;
adventures?: Adventure[] | [];
}