feat(frontend): Fractional Scaling

This commit is contained in:
hay-kot
2021-08-27 20:05:02 -08:00
parent d1a7ec3b95
commit 5ba337ab11
11 changed files with 306 additions and 126 deletions

View File

@@ -5,6 +5,7 @@ const prefix = "/api";
export interface CreateUnit {
name: string;
abbreviation: string;
fraction: boolean;
description: string;
}

View File

@@ -1,6 +1,5 @@
import { BaseCRUDAPI } from "./_base";
import { Recipe , CreateRecipe } from "~/types/api-types/recipe";
import { Recipe, CreateRecipe } from "~/types/api-types/recipe";
const prefix = "/api";