Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat : 페이지 상단 바 개발 #96

Merged
merged 8 commits into from
Nov 27, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore : letter 페이지 경로 변경
HelloWook committed Nov 27, 2024
commit 25b3f8f1f5e98efd23e6f4de4df50b9019d4d524
7 changes: 0 additions & 7 deletions src/pages/CreateLetterPage.tsx

This file was deleted.

17 changes: 17 additions & 0 deletions src/pages/Letter/Create/CreateLetterPage.stories.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import type { Meta, StoryObj } from '@storybook/react';

import { CreateLetterPage } from './CreateLetterPage';

const meta: Meta<typeof CreateLetterPage> = {
component: CreateLetterPage,
title: 'Pages/CreateLetterPage',
tags: ['autodocs'],
argTypes: {}
};
export default meta;

type Story = StoryObj<typeof CreateLetterPage>;

export const Default: Story = {
args: {}
};
7 changes: 7 additions & 0 deletions src/pages/Letter/Create/CreateLetterPage.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import React from 'react';

export const CreateLetterPage = () => {
return (
<div className="bg-slate-500 w-[375px] max-w-[768px] h-[815px]"></div>
);
};
2 changes: 1 addition & 1 deletion src/pages/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { ErrorPage } from '@/pages/ErrorPage';
import { HomePage } from '@/pages/HomePage';
import { CreateLetterPage } from '@/pages/CreateLetterPage';
import { CreateLetterPage } from '@/pages/Letter/Create/CreateLetterPage';
import { MapExplorerPage } from '@/pages/MapExplorerPage';
import { MyPage } from '@/pages/MyPage';
import { LoginPage } from '@/pages/LoginPage';