Welcome to the qeta plugin!
Qeta allows you to add Q&A section to your Backstage application. This plugin requires that you also install @drodil/backstage-plugin-qeta-backend plugin.
Add the plugin to your frontend app:
cd packages/app && yarn add @drodil/backstage-plugin-qeta
Expose the questions page:
// packages/app/src/App.tsx
import { QetaPage } from '@drodil/backstage-plugin-qeta';
// ...
const AppRoutes = () => (
<FlatRoutes>
// ...
<Route path="/qeta" element={<QetaPage />} />
// ...
</FlatRoutes>
);
An interface for Q&A is now available at /qeta
.