Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
Commit type | Emoji |
---|---|
Initial commit | 🎉 :tada: |
Version tag | 🔖 :bookmark: |
New feature | ✨ :sparkles: |
Bugfix | 🐛 :bug: |
// ---- | |
// Sass (v3.3.0.rc.5) | |
// Compass (v1.0.0.alpha.18) | |
// ---- | |
// Copied and Pasted from Harry Roberts Beutons - | |
// http://github.com/csswizardry/beautons/blob/master/beautons.css | |
// Base |
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Box Shadow</title> | |
<style> | |
.box { | |
height: 150px; | |
width: 300px; | |
margin: 20px; |
import React, { Component } from 'react' | |
// first we will make a new context | |
const MyContext = React.createContext() | |
// Then create a provider component | |
class MyProvider extends Component { | |
state = { | |
name: 'Bruno', | |
age: 23, |
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
Commit type | Emoji |
---|---|
Initial commit | 🎉 :tada: |
Version tag | 🔖 :bookmark: |
New feature | ✨ :sparkles: |
Bugfix | 🐛 :bug: |
module.exports = { | |
arrowParens: 'avoid', | |
bracketSpacing: true, | |
endOfLine: 'auto', | |
htmlWhitespaceSensitivity: 'css', | |
jsxBracketSameLine: false, | |
jsxSingleQuote: false, | |
printWidth: 80, // default: 80 | |
proseWrap: 'preserve', | |
semi: true, |
root = true | |
[*] | |
indent_style = space | |
end_of_line = lf | |
indent_size = 2 | |
charset = utf-8 | |
trim_trailing_whitespace = true | |
insert_final_newline = true |
People
![]() :bowtie: |
😄 :smile: |
😆 :laughing: |
---|---|---|
😊 :blush: |
😃 :smiley: |
:relaxed: |
😏 :smirk: |
😍 :heart_eyes: |
😘 :kissing_heart: |
😚 :kissing_closed_eyes: |
😳 :flushed: |
😌 :relieved: |
😆 :satisfied: |
😁 :grin: |
😉 :wink: |
😜 :stuck_out_tongue_winking_eye: |
😝 :stuck_out_tongue_closed_eyes: |
😀 :grinning: |
😗 :kissing: |
😙 :kissing_smiling_eyes: |
😛 :stuck_out_tongue: |
import React from "react"; | |
import { | |
Link, | |
BrowserRouter as Router, | |
Route, | |
Switch, | |
Redirect | |
} from "react-router-dom"; | |
import "./App.css"; |
{ | |
// Define o tema do VSCode | |
"workbench.colorTheme": "Shades of Purple", | |
// Configura tamanho e família da fonte | |
"editor.fontSize": 18, | |
"editor.lineHeight": 24, | |
"editor.fontFamily": "Fira Code", | |
"editor.fontLigatures": true, | |
"explorer.compactFolders": false, |
import { useState, useEffect } from 'react' | |
export function useChuckNorris() { | |
const [loading, setLoading] = useState(false) | |
const [error, setError] = useState(undefined) | |
const [data, setData] = useState(undefined) | |
useEffect(() => { | |
async function getJoke() { | |
setLoading(true) |