Skip to content

Latest commit

Β 

History

History
26 lines (20 loc) Β· 526 Bytes

README.md

File metadata and controls

26 lines (20 loc) Β· 526 Bytes

React Component Library

Component library using React to build artworks for exhibition.mixing-senses.art.

1. Getting started

  1. Install @vi.son/components
  2. Import desired components, e.g.:
import { Narrative } from "@vi.son/components";
  1. Use them in your React component:
<div>
  <Narrative 
    content={content} 
    show={true} 
    version={process.env.VERSION}
  />
</div>