import React, { type FC } from 'react'; import { dashboard } from '@wix/dashboard'; import { Button, EmptyState, Image, Page, TextButton, WixDesignSystemProvider, } from '@wix/design-system'; import '@wix/design-system/styles.global.css'; import * as Icons from '@wix/wix-ui-icons-common'; import wixLogo from './wix_logo.svg'; const Index: FC = () => { return ( { dashboard.showToast({ message: 'Your first toast message!', }); }} prefixIcon={} > Show a toast } /> } title="Start editing this dashboard page" subtitle="Learn how to work with dashboard pages and how to add functionality to them using Wix APIs." skin="page" > } > Dashboard pages documentation ); }; export default Index;