Skip to content

Commit

Permalink
fix: ci 오류(사용하지 않는 변수 제거)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kjiw0n committed Jul 6, 2024
1 parent 7b66694 commit 9a91b5b
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 20 deletions.
4 changes: 1 addition & 3 deletions src/components/common/textbox/TextInputStaging.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import styled from '@emotion/styled';

type Props = {};

const TextInputStaging = (props: Props) => {
const TextInputStaging = () => {
return (
<StagingLayout>
<TextArea placeholder="해야하는 일들을 쏟아내보세요." />
Expand Down
4 changes: 1 addition & 3 deletions src/pages/Calendar.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
type Props = {};

const Calendar = (props: Props) => {
const Calendar = () => {
return <div>Calender</div>;
};

Expand Down
4 changes: 1 addition & 3 deletions src/pages/DashBoard.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
type Props = {};

const DashBoard = (props: Props) => {
const DashBoard = () => {
return <div>DashBoard</div>;
};

Expand Down
4 changes: 1 addition & 3 deletions src/pages/Login.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
type Props = {};

const Login = (props: Props) => {
const Login = () => {
return <div>Login</div>;
};

Expand Down
4 changes: 1 addition & 3 deletions src/pages/Setting.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
type Props = {};

const Setting = (props: Props) => {
const Setting = () => {
return <div>Setting</div>;
};

Expand Down
8 changes: 3 additions & 5 deletions src/pages/Today.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,7 @@ import TextInputTitle from '@/components/common/textbox/TextInputTitle';
import TextboxDailydate from '@/components/common/textbox/TextboxDailydate';
import TextboxInput from '@/components/common/textbox/TextboxInput';

type Props = {};

const Today = (props: Props) => {
const Today = () => {
return (
<div>
Today
Expand All @@ -18,8 +16,8 @@ const Today = (props: Props) => {
<TextInputTitle type="short" />
<TextInputDesc type="long" />
<TextInputDesc type="short" />
<TextboxDailydate type="long" day="weekday" />
<TextboxDailydate type="short" day="weekday" />
<TextboxDailydate type="long" />
<TextboxDailydate type="short" />
<TextInputTime time="start" />
<TextInputTime time="end" />
<TextInputTime time="total" />
Expand Down

0 comments on commit 9a91b5b

Please sign in to comment.