Just run this on terminal:
echo -e '\n. $HOME/.asdf/asdf.sh' >> ~/.zshrc
If don't work, bring the code . $HOME/.asdf/asdf.sh
to top of your .zshrc file
console.log("Try 1") |
const BackTotop = () => { | |
const [showScroll, setShowScroll] = useState(false) | |
const checkScrollTop = () => { | |
if (!showScroll && window.pageYOffset > 400) { | |
setShowScroll(true) | |
} else if (showScroll && window.pageYOffset <= 400) { | |
setShowScroll(false) | |
} | |
} |
import React from 'react'; | |
import { Feather } from '@expo/vector-icons'; | |
import { View, TouchableOpacity, Text, StyleSheet } from 'react-native'; | |
type CheckboxProps = { | |
label: string, | |
labelStyle: object, | |
iconColor: string, | |
onChange: () => void, | |
value: boolean, |
[ | |
{ | |
"author": "Ray Dalio", | |
"itemId": "8551003429", | |
"link": "https://amzn.to/2P975Bx", | |
"title": "Principios" | |
} | |
, | |
{ | |
"author": "Aditya Y.", |
🏆 529 Contributions in year 2021 | |
📦 Used 120 MB in GitHub's Storage | |
📜 12 Public Gists | |
🔑 3 Public Keys | |
💼 Opted to Hire |
me = config user.name | |
# Less verbose status | |
st = status -sb | |
# Checkout | |
co = checkout | |
# Checkout master | |
cm = checkout master |
{ | |
"meta-page": " (Página %)", | |
"Back to Homepage": "Voltar ao inicio", | |
"No posts": "Sem postagens", | |
"1 post": "1 post", | |
"% posts": "% posts", | |
"Load more": "Carregar mais", | |
"Featured": "Destaque", | |
"Newer Post": "Post Novo", | |
"Older Post": "Post Antigo", |
import { useEffect } from 'react'; | |
import NProgress from 'nprogress'; | |
import Router from 'next/router'; | |
import PropTypes from 'prop-types'; | |
export default function NextNProgress({ | |
color = '#29D', | |
startPosition = 0.3, | |
stopDelayMs = 200, | |
height = 3, |
import fetch from 'isomorphic-unfetch'; | |
import { notification } from 'antd'; | |
import styled from 'styled-components'; | |
import { Form, Input } from '@rocketseat/unform'; | |
import * as Yup from 'yup'; | |
import PropTypes from 'prop-types'; | |
const FormStyled = styled(Form)` | |
display: flex; | |
justify-content: space-between; |