https://github.com/aaaaash/react-webgl-player
React player component based on webgl.
https://github.com/aaaaash/react-webgl-player
Last synced: 4 months ago
JSON representation
React player component based on webgl.
- Host: GitHub
- URL: https://github.com/aaaaash/react-webgl-player
- Owner: Aaaaash
- Created: 2018-04-01T10:23:48.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-04-08T09:08:49.000Z (about 7 years ago)
- Last Synced: 2025-02-15T07:41:41.739Z (4 months ago)
- Language: TypeScript
- Size: 88.9 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
#React-WebGL-Player
React player component based on webgl.## run example
```bash
npm install
npm run storybook
```## usage
```javascript
import Player from 'react-webgl-player';
import React from 'react';class App extends React.Component {
render() {
return (
);
}
}
```