Date align #23

Merged
LucidKobold merged 29 commits from date-align into main 2021-12-29 20:09:30 -05:00
6 changed files with 208 additions and 3 deletions
Showing only changes of commit 5e7afcaf7d - Show all commits

View File

@@ -0,0 +1,16 @@
import React, { useContext } from "react";
import { Box, Text } from "@chakra-ui/react";
import { NewCalenderContext } from "../../contexts/NewCalenderContext";
const NewContext = (): JSX.Element => {
const { selectedMonthInfo } = useContext(NewCalenderContext);
const { date } = selectedMonthInfo;
return (
<Box>
<Text>{`New Context Was Provided. Selected date is ${date}`}</Text>
</Box>
);
};
export default NewContext;