Skip to content

Commit

Permalink
docs(): Fix paths.
Browse files Browse the repository at this point in the history
  • Loading branch information
aidanCQ committed Jan 10, 2024
1 parent 173a707 commit dd7b69e
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion src/custom/theme-selector.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use client'
import { ComputerIcon, MoonIcon, SunIcon } from "lucide-react";
import React from "react";
import { Button } from "src/atoms/button";
import { Button } from "src/shadcn/button";
import { theme as _theme } from "src/utils";

export const useTheme = () => {
Expand Down
2 changes: 1 addition & 1 deletion src/shadcn/pagination.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
} from "@radix-ui/react-icons"
import * as React from "react"

import { ButtonProps, buttonVariants } from "src/atoms/button"
import { ButtonProps, buttonVariants } from "src/shadcn/button"
import { cn } from "src/utils"

const Pagination = ({ className, ...props }: React.ComponentProps<"nav">) => (
Expand Down
2 changes: 1 addition & 1 deletion stories/custom/slide-in.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { Meta, StoryObj } from "@storybook/react";
import { SlideIn } from "src/molecules/slide-in";
import { SlideIn } from "src/custom/slide-in";

const meta: Meta<typeof SlideIn> = {
component: () => {
Expand Down
2 changes: 1 addition & 1 deletion stories/custom/theme-selector.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Meta, StoryObj } from "@storybook/react";
import { ThemeSelector, useTheme } from "src/molecules/theme-selector";
import { ThemeSelector, useTheme } from "src/custom/theme-selector";
export function ThemeSelectorDemo() {
const { theme, setMode } = useTheme();
return <ThemeSelector theme={theme} setMode={setMode} />;
Expand Down
16 changes: 8 additions & 8 deletions stories/shadcn/pagination.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import {
Pagination,
PaginationContent,
PaginationEllipsis,
PaginationItem,
PaginationLink,
PaginationNext,
PaginationPrevious,
} from "src/atoms/pagination";
Pagination,
PaginationContent,
PaginationEllipsis,
PaginationItem,
PaginationLink,
PaginationNext,
PaginationPrevious,
} from "src/shadcn/pagination";

export function PaginationDemo() {
return (
Expand Down

0 comments on commit dd7b69e

Please sign in to comment.