Skip to content

Instantly share code, notes, and snippets.

View FallOutChonny's full-sized avatar
🍺
Focusing

Chonny Chu FallOutChonny

🍺
Focusing
View GitHub Profile
@FallOutChonny
FallOutChonny / Base.js
Created January 12, 2022 04:05 — forked from kjbrum/Base.js
React primitive components using styled-system.
import React, { forwardRef } from 'react'
import styled from 'styled-components'
import css, { get } from '@styled-system/css'
import {
system,
compose,
space,
color,
typography,
layout,
@FallOutChonny
FallOutChonny / dev.config.js
Created December 27, 2016 08:26 — forked from trueter/dev.config.js
DLL Bundles with webpack-isomorphic-tools
// Webpack config for development
var fs = require( 'fs' )
var path = require( 'path' )
var webpack = require( 'webpack' )
var WebpackIsomorphicTools = require( 'webpack-isomorphic-tools' )
var HappyPack = require( 'happypack' )
var assetsPath = path.resolve( __dirname, '../static/dist' )
var host = process.env.HOST || 'localhost'