Quick Installation

Editor - Quick Installation

Vizzly offers a React version of the Editor Component that can be directly embedded in your application.

npm install @vizzly/dashboard

Adding the React Component

import React from 'react';
import Vizzly from '@vizzly/dashboard';
 
function App() {
  return (
    <Vizzly.Editor
      view={async (dataSets: DataSet[]) => << DEFINED VIEW >>}
      queryEngineEndpoint={'<< Your query engine endpoint >>'}
      identity={async () => {
        throw new Vizzly.NewVizzlyImplementation();
      }}
    />
  );
}
 
export default App;