Skip to content

Instantly share code, notes, and snippets.

View cbillowes's full-sized avatar
:octocat:

Clarice Bouwer cbillowes

:octocat:
View GitHub Profile
{"lastUpload":"2021-05-17T18:37:16.833Z","extensionVersion":"v3.4.3"}
{"lastUpload":"2021-11-16T07:47:03.969Z","extensionVersion":"v3.4.3"}
@cbillowes
cbillowes / build-theme.sh
Created February 17, 2022 22:19
Read from files
#!/bin/bash
# places to read files from
paths=("../src/themes/**/index.js" "../src/themes/base.js")
rm -rf ./tmp/themes
mkdir -p ./tmp/themes
# this was an experiement to add dynamic files for tests
# in Storybook.

Boilerplate Create React App

Create a boilerplate Redux React app with some additional bells and whistles including Tailwind CSS and Firebase.

# https://redux.js.org/introduction/getting-started
npx create-react-app some-special-unicorn-idea --template redux

# Don't forget to gitify it and commit everything once off
cd some-special-unicorn-idea && git init && git add . && git commit -m "initial commit 🦄"