Skip to content

Commit

Permalink
Chore: 칼럼 제목 타입 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
foxholic9 committed Jun 10, 2024
1 parent 667c52d commit 902491e
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@ import ColumnCard from '../ColumnCard/ColumnCard';
import ColumnHeader from '../ColumnHeader/ColumnHeader';
import { AddNewTaskBtn } from '../../../../components/Btn/Btn';

function Column(title: string) {
interface ColumnProps {
title: string;
}

function Column({ title }: ColumnProps) {
const handleAddTaskBtn = () => {};

const CardProps = {
Expand Down

0 comments on commit 902491e

Please sign in to comment.