Skip to content

Latest commit

 

History

History
63 lines (40 loc) · 732 Bytes

README.md

File metadata and controls

63 lines (40 loc) · 732 Bytes

react-typescript-starter

Typescript Starter with styled-components! 🎊🎉

Introduction

A simple typescript starter for react using styled-components

Theming with styled-components

under src/styled/theme.ts

export interface ThemeInterface {
	colors: Colors;
	padding: string;
}

export interface Colors {
	white: string;
	shadow: string;
	text: string;
	glow: Glow;
}

export interface Glow {
	[character: string]: string;
}

Getting Started

clone the repo

git clone https://github.com/NovvumHacks/react-typescript-starter.git

install the dependencies

yarn

# --- or ----

npm install

start hacking!

yarn start

# --- or ----

npm run start