Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

주석추가 #47

Merged
merged 1 commit into from
Mar 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions src/components/business/DashBoard/PopupCurrent.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ import InfoList from '../../common/InfoList/InfoList';
import PopupCurrentApi from '../../../api/business/dashBoard/popupCurrnetApi';
import React, { useEffect, useState } from 'react';

/**
* 대시보드 현재 팝업
*
* @since 2024.02.27
* @author 이승민
*/

function PopupCurrent() {
const [communityInfo, setCommunityInfo] = useState([]);
const [popupInfo, setPopupInfo] = useState([]);
Expand Down
8 changes: 8 additions & 0 deletions src/components/business/DashBoard/PopupPostList.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@ import React, { useEffect, useState } from "react";
import MyPostListTable from "../../common/Table/MyPostListTable";
import PopupMyApi from "../../../api/business/dashBoard/popupMyApi";


/**
* 대시보드 팝업 리스트
*
* @since 2024.02.27
* @author 이승민
*/

function PopupPostList() {
const [posts, setPosts] = useState([]);

Expand Down
8 changes: 8 additions & 0 deletions src/components/business/DashBoard/PopupRanking.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@ import React, { useEffect, useState } from 'react';
import RankingList from '../../common/InfoList/RankingList';
import PopupRankingApi from '../../../api/business/dashBoard/popupRankingApi';

/**
* 대시보드 팝업 랭킹
*
* @since 2024.02.27
* @author 이승민
*/


function PopupRanking() {
const [myPopup, setMyPopup] = useState([]);
const [popupData, setPopupData] = useState([]);
Expand Down
8 changes: 8 additions & 0 deletions src/components/business/DashBoard/PopupStatistics.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ import UserStatisticsApi from '../../../api/business/dashBoard/userStatisticsApi

ChartJS.register(CategoryScale, LinearScale, PointElement, LineElement, Title, Tooltip, Legend);

/**
* 대시보드 팝업 통계
*
* @since 2024.02.28
* @author 이승민
*/


const PopupStatistics = () => {
const [chartData, setChartData] = useState({
labels: [],
Expand Down