This file contains hidden or 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, {Component} from 'react'; | |
export class MyComponent extends Component { | |
constructor (props) { | |
super(props); | |
} | |
render () { | |
return ( | |
<p> |
This file contains hidden or 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
/** | |
* jQuery plugin template by https://github.com/publicJorn | |
* Features: | |
* - dynamic plugin name (only supply once) so it's easy to change later | |
* - plugin factory to make it work in the browser, or with AMD / COMMONJS modules | |
* - Plugin instance is saved on the selector element | |
* - Default options are saved to the instance in case you need to figure out a difference between passed options | |
*/ | |
(function(global, factory) { | |
'use strict'; |
This file contains hidden or 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
[alias] | |
# Korte log van de laatste 20 commits met enkel SHA's en omschrijving. | |
l = log --pretty=oneline -n 20 --graph | |
# Gecondenseerde versie van status. Handig als snel overzicht. | |
s = status -s | |
# Status shorthand | |
st = status | |
# Laat diff zien tussen laatste commit en huidige staat van working copy | |
d = !"git diff-index --quiet HEAD -- || clear; git diff --patch-with-stat" | |
# `git di $number` laat diff zien tussen huidige staat en $number revisions geleden |
This file contains hidden or 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8" /> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width"> | |
<meta name="description" content=""> | |
<title></title> |
NewerOlder