import { Box, ScrollView, useColorModeValue, View } from "native-base";
import React, { FC } from "react";
import ErrorBoundary from "shared/components/ErrorBoundary";
import Footer from "shared/components/site/Footer";
import Navigation from "shared/components/site/Navigation";
import SomethingElse from "./something";
This is the desired final outcome but whenever I sort it I end up with this:
import { Box, ScrollView, useColorModeValue, View } from "native-base";
import React, { FC } from "react";
import ErrorBoundary from "shared/components/ErrorBoundary";
import Footer from "shared/components/site/Footer";
import Navigation from "shared/components/site/Navigation";
import SomethingElse from "./something"
What custom sorting rule can I use to resolve this undesirable outcome?
I have the following:
This is the desired final outcome but whenever I sort it I end up with this:
What custom sorting rule can I use to resolve this undesirable outcome?