Skip to content

Commit

Permalink
delete footer
Browse files Browse the repository at this point in the history
  • Loading branch information
BANANAPEEL202 committed Oct 8, 2024
1 parent 2a56b78 commit cb408ab
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,6 @@ export default function App() {
</div>
<SearchBar setFilteredData={setFilteredData} />
</div>

<footer className="footer">
<h3>made by Frontend team 2024</h3>
</footer>
</div>

{/* <PreviewCard /> */}
Expand Down
13 changes: 13 additions & 0 deletions src/components/PreviewCard.stories.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import type { Meta, StoryObj } from "@storybook/react";

import PreviewCard from "./PreviewCard";

const meta = {
component: PreviewCard,
} satisfies Meta<typeof PreviewCard>;

export default meta;

type Story = StoryObj<typeof meta>;

export const Default: Story = {};

0 comments on commit cb408ab

Please sign in to comment.