This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { useState } from 'react'; | |
import styled from 'styled-components'; | |
import { Flex } from './Flex'; | |
const Layout = styled.div` | |
margin: 0 auto; | |
`; | |
const Paragraph = styled.p` | |
margin-bottom: 5px; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const pets = ['Cat', 'Dog', 'Bird', 'Fish', 'Frog', 'Hamster', 'Pig', 'Horse' 'Lion', 'Dragon']; | |
// Print all pets | |
pets.forEach(pet => console.log(pet)) | |
... | |
.animal { | |
font-family: "Times New Roman", Times, serif; | |
font-size: 1rem; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Generated by Powerlevel10k configuration wizard on 2020-06-20 at 00:56 -03. | |
# Based on romkatv/powerlevel10k/config/p10k-rainbow.zsh, checksum 15764. | |
# Wizard options: nerdfont-complete + powerline, small icons, rainbow, unicode, | |
# 24h time, angled separators, sharp heads, flat tails, 2 lines, disconnected, | |
# left frame, lightest-ornaments, sparse, many icons, fluent, transient_prompt, | |
# instant_prompt=verbose. | |
# Type `p10k configure` to generate another config. | |
# | |
# Config for Powerlevel10k with powerline prompt style with colorful background. | |
# Type `p10k configure` to generate your own config based on it. |