Skip to content

community facilitation tool for the American Libraries Association

Notifications You must be signed in to change notification settings

loreleim/alagame

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ALA Quiz

Convergence Design Lab x American Libraries Association - interactive tool to provide urban librarians the support in designing community programs & events

  1. Overview
  2. Installing for Development
  3. Running
  4. Syntax Standards

Overview

This web app takes advantage of the following React.js features

  • Conditional SCSS Rendering
  • Multidimensional Array Rendering
  • Rendering components
  • isSelected() counting algorithm
  • useRefs for scroll on click
  • combining objects with spread ... operators

Installing for Development

Make sure to create a new branch if developing. Do all atomic pushes in here.

github desktop > new branch > name it [firstname-develop]

Go to folder directory

cd alagame

& install all dependencies

npm install

Running

npm run start

Syntax Standards

The following repo utilizes the following syntax standards in development. When implementing bugs or fixes, continue to use these standards. All scss, variables and functions are to follow camelCase standards. Example below.

.firstwordSecondword
thisIsAFunction()

For css styling and measurements. Always & only use the following:

rem
px
vh
vw
%

Back to Top