Tutorial #62

Merged
LucidKobold merged 32 commits from tutorial into main 2022-06-24 15:51:02 -04:00
16 changed files with 575 additions and 49 deletions
Showing only changes of commit ba4823334e - Show all commits

View File

@@ -12,6 +12,11 @@ interface CalenderExampleProps {
const CalenderExample = ({ const CalenderExample = ({
type type
}: CalenderExampleProps): JSX.Element => { }: CalenderExampleProps): JSX.Element => {
// TODO: Check if the current date is the start of the user's preferred start of the week and use the previous week for the edit example.
// TODO: Add highlight to the current date for the add example and highlight other dates when the edit example is used.
// TODO: Disable the days that shouldn't have a function to prevent edits on add example and add to current date on the edit example.
const currDateObj: Date = new Date(); const currDateObj: Date = new Date();
const isLoading = false; const isLoading = false;