Skip to content

Commit

Permalink
Create Pomodoro components
Browse files Browse the repository at this point in the history
  • Loading branch information
mikumino committed Dec 18, 2023
1 parent a76d5a0 commit d945481
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/components/PomodoroFocus.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
interface PomodoroFocusProps {
handleEndFocus: () => void;
}

const PomodoroFocus = ({ handleEndFocus }: PomodoroFocusProps) => {

};

export default PomodoroFocus;
9 changes: 9 additions & 0 deletions src/components/PomodoroLongBreak.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
interface PomodoroLongBreakProps {
handleEndLongBreak: () => void;
}

const PomodoroLongBreak = ({ handleEndLongBreak }: PomodoroLongBreakProps) => {

};

export default PomodoroLongBreak;
9 changes: 9 additions & 0 deletions src/components/PomodoroShortBreak.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
interface PomodoroShortBreakProps {
handleEndShortBreak: () => void;
}

const PomodoroShortBreak = ({ handleEndShortBreak }: PomodoroShortBreakProps) => {

};

export default PomodoroShortBreak;

0 comments on commit d945481

Please sign in to comment.