Skip to content

Commit

Permalink
refactor: separate fragments from components
Browse files Browse the repository at this point in the history
  • Loading branch information
sapkra committed Apr 9, 2024
1 parent 8359e43 commit 6d13276
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/fragments/shell/Shell.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import {

// More on how to set up stories at: https://storybook.js.org/docs/react/writing-stories/introduction
const meta: Meta<typeof Shell> = {
title: "components/Shell",
title: "fragments/Shell",
component: Shell,
tags: ["autodocs"],
parameters: {
Expand Down
4 changes: 2 additions & 2 deletions src/fragments/sidebar/Sidebar.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { Button, Card, Input } from "../../components/base";

// More on how to set up stories at: https://storybook.js.org/docs/react/writing-stories/introduction
const meta: Meta<typeof Sidebar> = {
title: "components/Sidebar",
title: "fragments/Sidebar",
component: Sidebar,
// tags: ['autodocs'],
parameters: {
Expand Down Expand Up @@ -75,7 +75,7 @@ export const Primary: Story = {
icon: <IconBoxMultiple stroke={1.5} />,
endContent: (
<Button size="sm" variant="light" isIconOnly>
<IconCirclePlus size={18} />
<IconCirclePlus stroke={1.5} />
</Button>
),
items: [
Expand Down
2 changes: 1 addition & 1 deletion src/fragments/sidebar/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { useSmaller } from '../../hooks/breakpoints';
import { IconChevronLeft } from '@tabler/icons-react';
import { useEffect, useState } from 'react';
import {
Avatar,
Avatar,
Badge,
Button,
Chip,
Expand Down

0 comments on commit 6d13276

Please sign in to comment.