feat: some shit
This commit is contained in:
@ -1,8 +1,8 @@
|
||||
import { Handlers, PageProps } from "$fresh/server.ts";
|
||||
import { IngredientsList } from "../../components/IngredientsList.tsx";
|
||||
import { RecipeHero } from "../../components/RecipeHero.tsx";
|
||||
import { MainLayout } from "../../components/layouts/main.tsx";
|
||||
import { Recipe } from "../../lib/recipes.ts";
|
||||
import { IngredientsList } from "@components/IngredientsList.tsx";
|
||||
import { RecipeHero } from "@components/RecipeHero.tsx";
|
||||
import { MainLayout } from "@components/layouts/main.tsx";
|
||||
import { Recipe } from "@lib/recipes.ts";
|
||||
import { getRecipe } from "../api/recipes/[name].ts";
|
||||
|
||||
export const handler: Handlers<Recipe | null> = {
|
||||
|
@ -1,8 +1,8 @@
|
||||
import { Handlers, PageProps } from "$fresh/server.ts";
|
||||
import { RecipeCard } from "../../components/RecipeCard.tsx";
|
||||
import { MainLayout } from "../../components/layouts/main.tsx";
|
||||
import type { Document } from "../../lib/documents.ts";
|
||||
import { Recipe } from "../../lib/recipes.ts";
|
||||
import { RecipeCard } from "@components/RecipeCard.tsx";
|
||||
import { MainLayout } from "@components/layouts/main.tsx";
|
||||
import type { Document } from "@lib/documents.ts";
|
||||
import { Recipe } from "@lib/recipes.ts";
|
||||
import { getRecipes } from "../api/recipes/index.ts";
|
||||
|
||||
export const handler: Handlers<Recipe[] | null> = {
|
||||
|
Reference in New Issue
Block a user