diff --git a/packages/cli/templates/default-app/packages/app/src/App.tsx b/packages/cli/templates/default-app/packages/app/src/App.tsx index 1b58a3e5df..8a0aedca2e 100644 --- a/packages/cli/templates/default-app/packages/app/src/App.tsx +++ b/packages/cli/templates/default-app/packages/app/src/App.tsx @@ -1,26 +1,7 @@ -import { makeStyles } from '@material-ui/core'; import { createApp } from '@backstage/core'; import React, { FC } from 'react'; import * as plugins from './plugins'; -const useStyles = makeStyles(theme => ({ - '@global': { - html: { - height: '100%', - fontFamily: theme.typography.fontFamily, - }, - body: { - height: '100%', - fontFamily: theme.typography.fontFamily, - 'overscroll-behavior-y': 'none', - }, - a: { - color: 'inherit', - textDecoration: 'none', - }, - }, -})); - const app = createApp({ plugins: Object.values(plugins), }); @@ -29,15 +10,12 @@ const AppProvider = app.getProvider(); const AppRouter = app.getRouter(); const AppRoutes = app.getRoutes(); -const App: FC<{}> = () => { - useStyles(); - return ( - - - - - - ); -}; +const App: FC<{}> = () => ( + + + + + +); export default App;