address feedback on missing styles

Signed-off-by: Peter Macdonald <peterm4c@pm.me>
This commit is contained in:
Peter Macdonald
2025-03-24 15:06:40 +01:00
parent d103dcb8d2
commit 34c75782b1
@@ -46,7 +46,10 @@ Adding plugins to your Backstage app is generally a simple process, and ideally
const routes = (
<FlatRoutes>
/* highlight-add-start */
<Route path="/tech-radar" element={<TechRadarPage />} />
<Route
path="/tech-radar"
element={<TechRadarPage width={1500} height={800} />}
/>
/* highlight-add-end */
</FlatRoutes>
);