chore: lint and format repo - 1 lint error left

This commit is contained in:
doprz
2024-03-05 23:06:12 -06:00
committed by Razboy20
parent 8f360206fb
commit 2593b371d5
7 changed files with 14 additions and 8 deletions

View File

@@ -1,7 +1,7 @@
import type { ThemeColor } from '@shared/util/themeColors';
import type { Meta, StoryObj } from '@storybook/react';
import CourseCellColorPicker from '@views/components/common/CourseCellColorPicker/CourseCellColorPicker';
import React, { useState } from 'react';
import type { ThemeColor } from 'src/shared/util/themeColors';
const meta = {
title: 'Components/Common/CourseCellColorPicker',
@@ -13,6 +13,7 @@ type Story = StoryObj<typeof CourseCellColorPicker>;
export const Default: Story = {
render: () => {
// TODO
const [selectedColor, setSelectedColor] = useState<ThemeColor | null>(null);
return <CourseCellColorPicker setSelectedColor={setSelectedColor} />;
},