-
-
Notifications
You must be signed in to change notification settings - Fork 28
home
github-actions[bot] edited this page Nov 28, 2024
·
1 revision
This shows questions table in the custom homepage for the user:
import React from 'react';
import { QuestionTableCard } from '@drodil/backstage-plugin-qeta';
import { CustomHomepageGrid } from '@backstage/plugin-home';
import { Content, Page } from '@backstage/core-components';
export const homePage = (
<Page themeId="home">
<Content>
<CustomHomepageGrid>
<QuestionTableCard />
</CustomHomepageGrid>
</Content>
</Page>
);