Skip to content

Commit

Permalink
Rename EditPost component
Browse files Browse the repository at this point in the history
  • Loading branch information
pahans committed May 19, 2024
1 parent 2462ed5 commit 75d73b0
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/app/admin/page.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { EditPost } from "../components/EditPost/EditPost";
import { fetchAllPosts, fetchPost } from "../lib/data";
import { EditPost } from "@/app/components/edit-post";
import { fetchAllPosts, fetchPost } from "@/app/lib/data";
import { PostsTable } from "./posts-table";

interface AdminPageProps {
Expand Down
Empty file.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { Meta, StoryObj } from "@storybook/react";

import { EditPost } from "./EditPost";
import { EditPost } from "./edit-post";

const meta = {
title: "EditPost",
Expand Down
File renamed without changes.
1 change: 1 addition & 0 deletions src/app/components/edit-post/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { EditPost } from "./edit-post";

0 comments on commit 75d73b0

Please sign in to comment.