mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 18:52:06 +00:00
Add dbml, minor tweaks to beer style page
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
interface IBeerStyle {
|
||||
interface BeerStyle {
|
||||
name: string;
|
||||
description: string;
|
||||
glassware: string;
|
||||
@@ -6,7 +6,7 @@ interface IBeerStyle {
|
||||
ibuRange: [number, number];
|
||||
}
|
||||
|
||||
const beerStyles: IBeerStyle[] = [
|
||||
const beerStyles: BeerStyle[] = [
|
||||
{
|
||||
name: 'Bock',
|
||||
description:
|
||||
|
||||
@@ -1,4 +1,11 @@
|
||||
export default [
|
||||
interface City {
|
||||
city: string;
|
||||
province: string;
|
||||
latitude: number;
|
||||
longitude: number;
|
||||
}
|
||||
|
||||
const canadianCities: City[] = [
|
||||
{
|
||||
city: 'Toronto',
|
||||
province: 'Ontario',
|
||||
@@ -10423,3 +10430,5 @@ export default [
|
||||
longitude: -110.4739,
|
||||
},
|
||||
];
|
||||
|
||||
export default canadianCities;
|
||||
|
||||
Reference in New Issue
Block a user