Skip to content
github-actions[bot] edited this page Nov 28, 2024 · 1 revision

Adding Q&A table to homepage

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>
);
Clone this wiki locally