refactor: move lib/* to src/
This commit is contained in:
parent
2745bb32c7
commit
7ae10b4ecc
6 changed files with 5 additions and 6 deletions
|
|
@ -2,11 +2,11 @@ import { type GetServerSideProps } from "next";
|
|||
import Head from "next/head";
|
||||
import Link from "next/link";
|
||||
|
||||
import { formatCurrency } from "~/lib/currency/formatter";
|
||||
import { formatCurrency } from "~/currency/formatter";
|
||||
|
||||
import { getServerAuthSession } from "~/server/auth";
|
||||
import { prisma } from "~/server/db";
|
||||
import { Training } from "lib/content/training";
|
||||
import { Training } from "~/content/training";
|
||||
import { Layout } from "~/components/Layout";
|
||||
import { Button } from "~/components/Button";
|
||||
|
||||
|
|
|
|||
Reference in a new issue