import { VeltViewAnalytics } from '@veltdev/react';

function YourComponent() {

  return (
    <div className="toolbar">
      <VeltViewAnalytics />
    </div>
  )
  
}

1

Import the VeltViewAnalytics component from @veltdev/react

Import the VeltViewAnalytics component

import { VeltViewAnalytics } from '@veltdev/react';
2

Place the VeltViewAnalytics component

Place the VeltViewAnalytics component wherever you want the View Analytics component to appear.

<div className="toolbar">
  <VeltViewAnalytics />
</div>
import { VeltViewAnalytics } from '@veltdev/react';

function YourComponent() {

  return (
    <div className="toolbar">
      <VeltViewAnalytics />
    </div>
  )
  
}