Skip to content

Commit e3f9b2c

Browse files
committed
chore: file path 이동
1 parent 5891bcd commit e3f9b2c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

apps/storybook/src/stories/Renderer.tsx renamed to apps/storybook/src/components/Renderer.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ import {
1313
MemoizedRichText,
1414
MemoizedImage,
1515
MemoizedBookmark,
16-
} from '../components/MemoizedComponents';
16+
} from './MemoizedComponents';
1717
import { useKeyboardNavigation } from '../hooks/useKeyboardNavigation';
1818
import { useIntersectionObserver } from '../hooks/useIntersectionObserver';
19-
import testData from './test.json';
19+
import testData from '../constants/test.json';
2020

2121
interface RichTextItem {
2222
type: 'text';
@@ -54,7 +54,7 @@ const GlobalStyle = createGlobalStyle<{ theme: Theme }>`
5454
`;
5555

5656
const Container = styled.div`
57-
max-width: 800px;
57+
max-width: 900px;
5858
margin: 0 auto;
5959
padding: ${({ theme }) => theme.spacing.xl};
6060
`;

apps/storybook/src/stories/Renderer.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import type { Meta, StoryObj } from '@storybook/react';
2-
import { Renderer } from './Renderer';
2+
import { Renderer } from '../components/Renderer';
33
import { NotionBlock } from '../types';
44

55
const meta = {

0 commit comments

Comments
 (0)