React Native - 26.01.20 ๊ธฐ์ค€ ์ตœ์‹  Components, API
ยท
๐Ÿ›ธ React Native
โœ… Deprecated๋œ ComponentAppLoading -> SplashScreenimport { Text, View } from 'react-native';import Entypo from '@expo/vector-icons/Entypo';import * as SplashScreen from 'expo-splash-screen';// Set the animation options. This is optional.SplashScreen.setOptions({ duration: 1000, fade: true,});export default function App() { return ( SplashScreen Demo! ๐Ÿ‘‹ );} import * as Sp..
Next.js 12 - Layout, Head component
ยท
♠๏ธ Next.js 12
โšซ Layout pattern[Layout.js]import NavBar from "./NavBar";export default function Layout({ children }) { return ( {children} );}children์€ Layout component๋ฅผ ์‚ฌ์šฉํ•œ ๊ณณ์—์„œ ์ž์‹ ์ปดํฌ๋„ŒํŠธ๋กœ ๋“ค์–ด์˜ค๋Š” ์ปดํฌ๋„ŒํŠธ๊ฐ€ ๋“ค์–ด์˜ค๊ฒŒ ๋œ๋‹ค. [_app.js]import Layout from "../components/Layout";import "../styles/globals.css";export default function App({ Component, pageProps }) { return ( );}ํŽ˜์ด์ง€๊ฐ€ ๋ Œ๋”๋ง ๋  ๋•Œ ๊ฐ€์žฅ ๋จผ์ € ..