Skip to content

Instantly share code, notes, and snippets.

View gardun0's full-sized avatar
🏠
Working from home

Jorge Garduño gardun0

🏠
Working from home
View GitHub Profile
@gardun0
gardun0 / Image.jsx
Last active August 3, 2018 21:15
Image component to prevent dragging and user select
import React from 'react'
const Image = ({
width = 'auto',
height = 'auto',
src,
...rest
}) => (
<div
{...rest}
@gardun0
gardun0 / cloudSettings
Last active February 22, 2018 09:29
Visual Studio Code Settings Sync Gist
{"lastUpload":"2018-02-22T09:29:37.569Z","extensionVersion":"v2.8.7"}
@gardun0
gardun0 / .babelrc
Created October 24, 2017 14:20
.babelrc prefered by me <3
{
"presets": [
["env", {
"targets": {
"node": "current"
}
}],
"stage-3"
],
"plugins": [