Programming
-
[TS] 활동기록 API 호출하는 함수Programming/React 2023. 4. 5. 16:35
오늘 날짜를 받아와서 오늘 날짜를 포함한 일주일을 계산한다. 일주일의 첫 시작은 한국시간 기준 일요일 오전 4시, 마지막 시간은 한국시간 기준 토요일 오전 3시이다. const member= 1; function getWeekStartEndDates(): { fromStartedAt: string, toStartedAt: string } { const now = new Date(); // 일주일의 첫 시작일로 설정합니다. 일요일 4시로 고정합니다. const startOfWeek = new Date(now.getFullYear(), now.getMonth(), now.getDate() - now.getDay(), 4 + 9); // 일주일의 마지막 날짜로 설정합니다. 토요일 3시로 고정합니다. const..
-
[React] 환경설정 페이지 퍼블리싱 (tsx, css)Programming/web 2023. 1. 8. 21:30
(MUI 적용 전 코드 정리) SettingPage.tsx import React from 'react'; import { Button } from '@mui/material'; import '../styles/setting.css'; const SettingPage = () => { return ( 00 회원 커스텀화 테마 설정 시작 요일 설정 고객센터 도움말 문의하기 기타 로그아웃 ); }; export default SettingPage; setting.css .username{ position: fixed; width: 95px; height: 23px; left: 123px; top: 70px; font-family: 'Roboto'; font-style: normal; font-weight: ..
-