Skip to content

Commit 877ee55

Browse files
committed
refactor: use aliases everywhere.
1 parent 01b20bf commit 877ee55

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

webdriver-ts-results/src/components/tables/CompareRow.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { Framework, TableResultComparisonEntry } from "../../Common";
2-
import { useRootStore } from "../../reducer";
1+
import { Framework, TableResultComparisonEntry } from "@/Common";
2+
import { useRootStore } from "@/reducer";
33

44
interface Props {
55
comparison: Array<TableResultComparisonEntry | null>;

webdriver-ts-results/src/components/tables/CpuResultsTable.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import {
44
SORT_BY_NAME,
55
SORT_BY_GEOMMEAN_CPU,
66
BenchmarkType,
7-
} from "../../Common";
7+
} from "@/Common";
88
import GeomMeanRow from "./GeomMeanRow";
99
import CompareRow from "./CompareRow";
1010
import ValueResultRow from "./ValueResultRow";

webdriver-ts-results/src/components/tables/GeomMeanRow.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React from "react";
2-
import { TableResultGeommeanEntry, T_SORT_BY_GEOMMEAN } from "../../Common";
2+
import { TableResultGeommeanEntry, T_SORT_BY_GEOMMEAN } from "@/Common";
33

44
interface Props {
55
weighted: boolean;

webdriver-ts-results/src/components/tables/MemResultsTable.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React from "react";
2-
import { ResultTableData, SORT_BY_NAME, SORT_BY_GEOMMEAN_MEM, BenchmarkType } from "../../Common";
2+
import { ResultTableData, SORT_BY_NAME, SORT_BY_GEOMMEAN_MEM, BenchmarkType } from "@/Common";
33
import ValueResultRow from "./ValueResultRow";
44
import GeomMeanRow from "./GeomMeanRow";
55

webdriver-ts-results/src/components/tables/SizeResultsTable.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React from "react";
2-
import { ResultTableData, SORT_BY_NAME, BenchmarkType, SORT_BY_GEOMMEAN_SIZE } from "../../Common";
2+
import { ResultTableData, SORT_BY_NAME, BenchmarkType, SORT_BY_GEOMMEAN_SIZE } from "@/Common";
33
import ValueResultRow from "./ValueResultRow";
44
import GeomMeanRow from "./GeomMeanRow";
55

webdriver-ts-results/src/components/tables/StartupResultsTable.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React from "react";
2-
import { ResultTableData, SORT_BY_NAME, SORT_BY_GEOMMEAN_STARTUP, BenchmarkType } from "../../Common";
2+
import { ResultTableData, SORT_BY_NAME, SORT_BY_GEOMMEAN_STARTUP, BenchmarkType } from "@/Common";
33
import ValueResultRow from "./ValueResultRow";
44
import GeomMeanRow from "./GeomMeanRow";
55

webdriver-ts-results/src/components/tables/ValueResultRow.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React from "react";
2-
import { TableResultValueEntry, Benchmark } from "../../Common";
2+
import { TableResultValueEntry, Benchmark } from "@/Common";
33
import ValueCell from "./ValueCell";
44

55
interface Props {

0 commit comments

Comments
 (0)