A growing collection of react components for showcasing 3D on the web!
Built with three.js, react-three-fiber, drei, three-stdlib
npm install @readyplayerme/visage
You can find all examples of components and their documentation on our GitHub page.
import React from 'react';
import ReactDOM from 'react-dom';
import { Exhibit } from '@readyplayerme/visage';
function App() {
return (
<Exhibit modelUrl="/model.glb" />
);
}
ReactDOM.render(<App />, document.querySelector('#app'));