Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 | 31 |
Tags
- rolldown
- ffi-napi
- Can't resolve
- device in use
- 이미지 데이터 타입
- adb connect
- Each child in a list should have a unique "key" prop.
- electron-packager
- 티스토리 성능
- Git
- animation
- github lfs
- npm package
- dvh
- silent printing
- github 100mb
- camera access
- Failed to compiled
- vercel git lfs
- camera permission
- github pdf
- adb pair
- custom printing
- react-native-dotenv
- ELECTRON
- html
- nextjs
- react-native
- augmentedDevice
- Recoil
Archives
- Today
- Total
목록2022/12/15 (1)
Bleeding edge
2022/12/15 - History in React
import * as React from 'react'; import { Button } from 'react-native'; import { useNavigation } from '@react-navigation/native'; function MyBackButton() { const navigation = useNavigation(); return ( { navigation.goBack(); }} /> ); } 리액트는 SPA이기 때문에 (물론 페이지마다 리액트르 구동하는 방법을 중간에 섞는 방법을 이용하여 SPA가 아닌 방식을 사용할 수 있기는 하다) History를 바꾸는 것이 일반 html에서 페이지 이동에서 사용하는 방법과 다르다. 일반적인 javascript를 이용한 web의 페이지 redi..
ConnecTo
2022. 12. 15. 19:38