diff --git a/packages/cli/templates/default-plugin/src/components/ExampleComponent/ExampleComponent.tsx.hbs b/packages/cli/templates/default-plugin/src/components/ExampleComponent/ExampleComponent.tsx.hbs index fd2a360adf..acf7998a57 100644 --- a/packages/cli/templates/default-plugin/src/components/ExampleComponent/ExampleComponent.tsx.hbs +++ b/packages/cli/templates/default-plugin/src/components/ExampleComponent/ExampleComponent.tsx.hbs @@ -5,6 +5,8 @@ import { Header, Page, theme as pageTheme, + Content, + ContentHeader, } from '@spotify-backstage/core'; import ExampleFetchComponent from '../ExampleFetchComponent'; @@ -13,9 +15,6 @@ const useStyles = makeStyles(theme => ({ overflowX: 'hidden', overflowY: 'auto', }, - pageBody: { - padding: theme.spacing(3), - }, title: { padding: theme.spacing(1, 0, 2, 0), }, @@ -28,28 +27,28 @@ const ExampleComponent: FC<{}> = () => {
- - - Plugin page title + + + + + + + All content should be wrapped in a card like this. + + + + + + + + - - - - All content should be wrapped in a card like this. - - - - - - - - - +
);