index.tsx 300 B

123456789
  1. import { defineDashboardExtension } from '@vendure/dashboard';
  2. defineDashboardExtension({
  3. // Let's add a simple test page to check things are working
  4. actionBarItems: [{
  5. pageId: 'product-list',
  6. component: () => <div data-testid="test-component">test component</div>
  7. }]
  8. });