studio-app
v1.7.2
Published
Base class for building Studio-based Movable Ink applications
Downloads
15
Readme
Studio App Base
This contains a base StudioApp class which you can extend to build your own studio apps.
Installation
Inside your project:
yarn add studio-app
Usage
In your index.js
, you can extend the app base like so:
import StudioApp from 'studio-app';
class MyApp extends StudioApp {
...
}
export default MyApp;
In index.html
you can instantiate it and render:
const app = new MyApp();
app.render();
License
Copyright 2018 Movable, Inc. All rights reserved.