Skip to content

Commit

Permalink
moves code-block into packages directory
Browse files Browse the repository at this point in the history
  • Loading branch information
cody-dot-js committed Oct 31, 2023
1 parent 8d4d10d commit 9e28756
Show file tree
Hide file tree
Showing 8 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { Meta, StoryObj } from "@storybook/react";

import { CodeBlock, CodeBlockBody, CodeBlockContent, CodeBlockCopyButton, CodeBlockHeader, CodeBlockTitle } from ".";
import { code } from "./utils/code";
import { code } from "./code";

const meta = {
title: "CodeBlock",
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ import { Slot } from "@radix-ui/react-slot";
import Prism from "prismjs";
import "prismjs/components/prism-bash";

import type { WithStyleProps } from "@/types/with-style-props";
import { cx } from "@/lib/cx";
import { SupportedLanguage } from "./utils/supported-languages";
import { formatLanguageClassName } from "./utils/format-language-classname";
import { LineRange } from "./utils/line-numbers";
import type { WithStyleProps } from "../types/with-style-props";
import { cx } from "../cx";
import { SupportedLanguage } from "./supported-languages";
import { formatLanguageClassName } from "./format-language-classname";
import { LineRange } from "./line-numbers";

/**
* TODO(cody):
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 9e28756

Please sign in to comment.