plugins: use src-relative imports

This commit is contained in:
Patrik Oldsberg
2020-04-07 23:49:24 +02:00
parent 7ed9444de8
commit b7814caa5d
4 changed files with 4 additions and 4 deletions
@@ -16,7 +16,7 @@
import React, { FC } from 'react';
import { Typography, Link, Grid } from '@material-ui/core';
import HomePageTimer from '../HomepageTimer';
import HomePageTimer from 'components/HomepageTimer';
import { Content, InfoCard, Header, Page, pageTheme } from '@backstage/core';
import SquadTechHealth from './SquadTechHealth';
import Table from '@material-ui/core/Table';
+1 -1
View File
@@ -15,7 +15,7 @@
*/
import { createPlugin } from '@backstage/core';
import HomePage from './components/HomePage';
import HomePage from 'components/HomePage';
export default createPlugin({
id: 'home-page',
@@ -24,7 +24,7 @@ import {
ListItemText,
Link,
} from '@material-ui/core';
import Timer from '../Timer';
import Timer from 'components/Timer';
import {
Content,
InfoCard,
+1 -1
View File
@@ -15,7 +15,7 @@
*/
import { createPlugin } from '@backstage/core';
import WelcomePage from './components/WelcomePage';
import WelcomePage from 'components/WelcomePage';
export default createPlugin({
id: 'welcome',