인프런 커뮤니티 질문&답변
질문에 올려서 죄송합니다. dayjs 한글표기하는 유용한 팁이 있어서 적어봅니다.
작성
·
1.4K
3
main 폴더에 있는 index.js 파일에서
윗부분을 이렇게 수정하시면
1 hour ago라고 표기 되어있던 것이
1시간 전이라고 표기됩니다.
필요하실 것 같아서 적었습니다.
import React from 'react';
import './index.css';
import axios from 'axios';
import {Link} from 'react-router-dom';
import * as dayjs from 'dayjs';
import relativeTime from 'dayjs/plugin/relativeTime';
import 'dayjs/locale/ko';
dayjs.extend(relativeTime);
dayjs.locale('ko');
import 'dayjs/locale/ko';
와
dayjs.locale('ko');
를 넣어주시면 됩니다 ㅎㅎ
퀴즈
61%나 틀려요. 한번 도전해보세요!
데이터베이스에서 데이터를 관리하기 위한 네 가지 기본적인 작업은 무엇인가요?
분석(Analyze), 설계(Design), 구현(Implement), 테스트(Test)
생성(Create), 읽기(Read), 수정(Update), 삭제(Delete)
저장(Store), 처리(Process), 보관(Archive), 검색(Retrieve)
계획(Plan), 실행(Execute), 모니터링(Monitor), 제어(Control)




