Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Brokyeom committed Dec 14, 2024
1 parent 29b6ee6 commit 650af0f
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions apps/docs/.storybook/preview.ts
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
import type { Preview } from "@storybook/react";
import type { Preview } from '@storybook/react';

import "../src/index.css";
import "@sopt-makers/ui/dist/index.css";
import '../src/index.css';
import '@sopt-makers/ui/dist/index.css';

const preview: Preview = {
parameters: {
actions: { argTypesRegex: "^on[A-Z].*" },
actions: { argTypesRegex: '^on[A-Z].*' },
controls: {
matchers: {
color: /(background|color)$/i,
date: /Date$/i,
},
},
layout: "centered",
layout: 'centered',
backgrounds: {
default: "dark", // 기본 배경을 'dark'로 설정
default: 'dark', // 기본 배경을 'dark'로 설정
values: [
{ name: "dark", value: "#0F1012" }, // 'dark' 배경의 색상을 검정색으로 지정
{ name: "white", value: "#ffffff" },
{ name: 'dark', value: '#0F1012' }, // 'dark' 배경의 색상을 검정색으로 지정
{ name: 'white', value: '#ffffff' },
],
},
},
Expand Down

0 comments on commit 650af0f

Please sign in to comment.