Skip to content

Commit 878f176

Browse files
committed
feat: update components folder name to _components
1 parent 47260ef commit 878f176

File tree

7 files changed

+3
-3
lines changed

7 files changed

+3
-3
lines changed

src/app/todos/[id]/edit/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { notFound } from "next/navigation";
44
import { Button } from "@/components/ui/button";
55
import { getAllCategories } from "@/server/categories.server";
66
import { getTodoById } from "@/server/todos.server";
7-
import { TodoForm } from "../../components/todo-form";
7+
import { TodoForm } from "../../_components/todo-form";
88

99
export const dynamic = "force-dynamic";
1010

File renamed without changes.
File renamed without changes.

src/app/todos/new/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { ArrowLeft } from "lucide-react";
22
import Link from "next/link";
33
import { Button } from "@/components/ui/button";
44
import { getAllCategories } from "@/server/categories.server";
5-
import { TodoForm } from "../components/todo-form";
5+
import { TodoForm } from "../_components/todo-form";
66

77
export const dynamic = "force-dynamic";
88

src/app/todos/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { Plus } from "lucide-react";
22
import Link from "next/link";
33
import { Button } from "@/components/ui/button";
44
import { getAllTodos } from "@/server/todos.server";
5-
import { TodoCard } from "./components/todo-card";
5+
import { TodoCard } from "./_components/todo-card";
66

77
export const dynamic = "force-dynamic";
88

0 commit comments

Comments
 (0)