Reordered components directory

This commit is contained in:
2023-06-10 19:41:30 +02:00
parent c66d035a1c
commit b4b49351f8
8 changed files with 12 additions and 12 deletions

View File

@ -5,9 +5,9 @@ import Icon from "@expo/vector-icons/Feather";
import tw from "twrnc";
import { formatBytes } from "../../../lib/helper/format";
import { useMemo } from "react";
import { Gauge } from "../../../components/Gauge";
import ProgressBar from "../../../components/ProgressBar";
import Card from "../../../components/Card";
import { Gauge } from "../../../components/shared/gauge";
import ProgressBar from "../../../components/shared/progress-bar";
import Card from "../../../components/shared/card";
interface ResourceListItemProps {
type: ResourceType;

View File

@ -3,9 +3,9 @@ import { useMemo } from "react";
import { View, Text, TouchableHighlight, ScrollView } from "react-native";
import Icon from "@expo/vector-icons/Feather";
import tw from "twrnc";
import Card from "../../../../../components/Card";
import { Gauge } from "../../../../../components/Gauge";
import ProgressBar from "../../../../../components/ProgressBar";
import Card from "../../../../../components/shared/card";
import { Gauge } from "../../../../../components/shared/gauge";
import ProgressBar from "../../../../../components/shared/progress-bar";
import { useNode } from "../../../../../hooks/useNode";
import { useResource } from "../../../../../hooks/useResource";
import { formatBytes } from "../../../../../lib/helper/format";