Skip to content

Instantly share code, notes, and snippets.

@stivncastillo
Last active October 26, 2018 04:47
Show Gist options
  • Save stivncastillo/e244c3d489f9ca2e1fbf339b2bc1a427 to your computer and use it in GitHub Desktop.
Save stivncastillo/e244c3d489f9ca2e1fbf339b2bc1a427 to your computer and use it in GitHub Desktop.
Workshop Reactjs
$primary-color: #EF476F;
$color-blue-dark: #26547C;
$color-green: #06D6A0;
$color-white-gray: #F4F4F8;
$color-white: #FFFFFF;
$color-gray: #4A4A4A;
export const TOKEN = 'UHAUFA22CQ2BM72V6HER';
export const PATH_BASE = 'https://www.eventbriteapi.com/v3';
export const PATH_CATEGORIES = '/categories';
export const PATH_EVENTS = '/events/search';
export const PARAM_LOCALE = 'locale=es_ES';
# Crear proyecto con create-react-app
npx create-react-app events
# Iniciar proyecto en el navegador
yarn start
npm start
# Instalar sass lang
npm install -g sass
yarn add node-sass
npm install node-sass --save
# Instalar reactstrap
yarn add bootstrap reactstrap
npm install --save bootstrap reactstrap
# Instalar axios para llamados http
yarn add axios
npm install axios
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment