Simplified some relative imports

This commit is contained in:
BB
2022-03-06 05:05:55 +01:00
parent e80190e687
commit 2c3e0985c4
26 changed files with 35 additions and 35 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
import React from "react";
import { numeralWrapper } from "../../ui/numeralFormat";
import { Money } from "../../ui/React/Money";
import { numeralWrapper } from "../numeralFormat";
import { Money } from "./Money";
export function MoneyRate({ money }: { money: number }): JSX.Element {
return <Money money={`${numeralWrapper.formatMoney(money)} / sec`} />;