aframe-react-components
v0.0.1
Published
React components for aframe primitives for aframe-react.
Downloads
9
Maintainers
Readme
aframe-react-components
Provides light sugar around [aframe-react's] <Entity />
component. Instead of passing in a primitive
attribute to an <Entity />
, you can just use an aframe-react-component component.
import { Entity } from 'aframe-react';
<Entity primitive='a-box' width='5' />
With [aframe-react-components], just use the component directly:
import { Box } from 'aframe-react-components';
<Box width='5' />
Usage
See aframe-react-boilerplate for general usage of aframe-react. See src/components.js for supported components.
Installation
Ensure you have peer dependencies installed from aframe-react.
npm install --save aframe aframe-react react react-dom aframe-react-components
Test
npm test
Future Work
May possibly tie in React PropTypes to components for aid in development.
License
MIT License, Copyright (c) 2016 Jordan Santell