Revert "refactor: update import path via root path"

This reverts commit 2f5c93710444632319285729106b520d414b73d8.
This commit is contained in:
p-sw 2024-05-19 12:35:16 +09:00
parent ab162a706e
commit 376ccc724f
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
import React from "react";
import { vcn, VariantProps } from "@/shared";
import { vcn, VariantProps } from "../shared";
const [buttonVariants, resolveVariants] = vcn({
base: "flex flex-row items-center justify-between rounded-md",

View File

@ -1,5 +1,5 @@
import type { Meta, StoryObj } from "@storybook/react";
import { Button } from "@/components/Button";
import { Button } from "../components/Button";
const meta: Meta<typeof Button> = {
component: Button,