일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- 트윈맥스 기초
- RN navitate push
- safari wiondow.open
- 웹뷰 페이지 로딩
- styled component is not working
- 임고미
- rn webview page loading
- react이론
- 퍼블리셔
- scrollIntoView scrollTo
- 프론트앤드
- JS
- gsap
- gsap 기초
- React-Native IOS
- React-Native 공부
- SafeArea 커스텀
- slick slider 간격
- styled component 작동안함
- 타입스크립트
- input 숫자입력
- styled component
- react
- js 특정 위치로 이동
- react native safeArea
- React Native navigation
- React Native SafeArea Custom
- reactnative 웹뷰 페이지 로딩
- styled component 작동 안될때
- 리액트
- Today
- Total
목록리액트/앤트디(Antd) (2)
개발공부 임고미
1. 앤트디 적용했는데 스타일이 안들어오는 문제를 확인했다.. import 'antd/dist/antd.css'; 했더니 스타일이 적용되긴 되었다. 2. 커스텀하려고 craco 로 세팅 다운 받아야하는 라이브러리 2가지는 "@craco/craco": "^5.5.0", "craco-antd": "^1.19.0", 버전을 함께 올려놓은 이유는, craco-antd를 사용하기 위해선 caraco를 로드해야하는데 craco 버전 이슈가 있어서 5.5.0으로 세팅하였다. package.json의 스크립트 부분을 수정해 줘야합니다. "scripts": { "start": "craco start", "build": "react-scripts build", "test": "react-scripts test", "eje..
// base import React, { useState, useEffect, ReactNode } from 'react'; import { useHistory } from 'react-router'; // packages import { Menu } from 'antd'; import { HomeOutlined, FileDoneOutlined, BarChartOutlined, TeamOutlined, } from '@ant-design/icons'; // modules import { Link } from 'react-router-dom'; export const MainNav = () => { const roots = ['sub1', 'sub2', 'sub3', 'sub4']; const userM..