Skip to content

Commit

Permalink
fix(apps/studio): move files (#652)
Browse files Browse the repository at this point in the history
Fix for #636

I merged #647 before #636 and #647 did not know about the files that's
created with #647. This PR fixes that.
  • Loading branch information
usirin authored Aug 15, 2023
1 parent 095d3bd commit c68a735
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { Meta, StoryObj } from "@storybook/react";

import { TypographyBlockquote } from "@kampus/ui-next";
import { TypographyBlockquote } from "@kampus/ui";

const meta = {
component: TypographyBlockquote,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { Meta, StoryObj } from "@storybook/react";

import { TypographyH1 } from "@kampus/ui-next";
import { TypographyH1 } from "@kampus/ui";

const meta = {
component: TypographyH1,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { Meta, StoryObj } from "@storybook/react";

import { TypographyH2 } from "@kampus/ui-next";
import { TypographyH2 } from "@kampus/ui";

const meta = {
component: TypographyH2,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { Meta, StoryObj } from "@storybook/react";

import { TypographyH3 } from "@kampus/ui-next";
import { TypographyH3 } from "@kampus/ui";

const meta = {
component: TypographyH3,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { Meta, StoryObj } from "@storybook/react";

import { TypographyH4 } from "@kampus/ui-next";
import { TypographyH4 } from "@kampus/ui";

const meta = {
component: TypographyH4,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { Meta, StoryObj } from "@storybook/react";

import { TypographyInlineCode } from "@kampus/ui-next";
import { TypographyInlineCode } from "@kampus/ui";

const meta = {
component: TypographyInlineCode,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { Meta, StoryObj } from "@storybook/react";

import { TypographyLarge } from "@kampus/ui-next";
import { TypographyLarge } from "@kampus/ui";

const meta = {
component: TypographyLarge,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { Meta, StoryObj } from "@storybook/react";

import { TypographyLead } from "@kampus/ui-next";
import { TypographyLead } from "@kampus/ui";

const meta = {
component: TypographyLead,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { Meta, StoryObj } from "@storybook/react";

import { TypographyList } from "@kampus/ui-next";
import { TypographyList } from "@kampus/ui";

const meta = {
component: TypographyList,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { Meta, StoryObj } from "@storybook/react";

import { TypographyLarge, TypographyMuted } from "@kampus/ui-next";
import { TypographyLarge, TypographyMuted } from "@kampus/ui";

const meta = {
component: TypographyMuted,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { Meta, StoryObj } from "@storybook/react";

import { TypographyP } from "@kampus/ui-next";
import { TypographyP } from "@kampus/ui";

const meta = {
component: TypographyP,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { Meta, StoryObj } from "@storybook/react";

import { TypographySmall } from "@kampus/ui-next";
import { TypographySmall } from "@kampus/ui";

const meta = {
component: TypographySmall,
Expand Down

0 comments on commit c68a735

Please sign in to comment.