Skip to content

Instantly share code, notes, and snippets.

View tarla's full-sized avatar

João Tarla tarla

View GitHub Profile
@tarla
tarla / app.js
Created June 23, 2017 10:38 — forked from RickWong/app.js
React without Webpack
const App = ({name}) => {
return (
<h1>Hello {name}</h1>
);
};
ReactDOM.render(<App name="World" />, document.getElementById("App"));
@tarla
tarla / gh-like.css
Created August 4, 2016 00:48 — forked from somebox/gh-like.css
github markdown css+script with syntax highlighting. Works with http://markedapp.com
/*
Some simple Github-like styles, with syntax highlighting CSS via Pygments.
*/
body{
font-family: helvetica, arial, freesans, clean, sans-serif;
color: #333;
background-color: #fff;
border: none;
line-height: 1.5;
margin: 2em 3em;