Moving the dashboard-related components out of the 'widgets' folder and into a 'dashboard' components folder.

This commit is contained in:
Desmond Grealy
2023-01-04 03:09:40 -08:00
parent 79d18f959b
commit ab41420327
5 changed files with 4 additions and 4 deletions
@@ -1,6 +1,6 @@
import { Badge, Box, Image, Link, Stack, StackDivider, Text, useColorModeValue } from "@chakra-ui/react";
export function LeaderboardWidget() {
export function LeaderboardTable() {
const backgroundColor = useColorModeValue("white", "gray.700");
const accentColor = useColorModeValue("gray.200", "gray.900");
@@ -1,3 +1,3 @@
export { LeaderboardWidget } from "./LeaderboardWidget";
export { LeaderboardTable } from "./LeaderboardTable";
export { SideMenu } from "./SideMenu";
export { TaskOption } from "./TaskOption";