인프런 영문 브랜드 로고
인프런 영문 브랜드 로고

Inflearn Community Q&A

there77880606's profile image
there77880606

asked

A real introductory all-in-one development boot camp for non-majors

Web and API integration & date handling with dayjs

질문에 올려서 죄송합니다. dayjs 한글표기하는 유용한 팁이 있어서 적어봅니다.

Written on

·

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');

를 넣어주시면 됩니다 ㅎㅎ

tensorflowexpressHTML/CSSjavascriptreact-nativenodejsreact머신러닝 배워볼래요?

Answer 1

0

grab님의 프로필 이미지
grab
Instructor

좋은 정보 감사합니다 :) 

react-native에서 dayjs에는 적용을 했는데, react에서는 따로 적용을 하지 않았네요 ㅠㅠ

there77880606's profile image
there77880606

asked

Ask a question