Skip to content

Commit

Permalink
chore: add tag selector props
Browse files Browse the repository at this point in the history
  • Loading branch information
moolmin committed Oct 8, 2024
1 parent 87e5aef commit 8a30520
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/app/(pages)/4q-create/(modals)/tagSelectModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ import styles from "./tagSelectModal.module.css";
import hot_mark from "../../../../../public/images/hot_tag.png";
import tagTranslationMap from "@/lib/tagTranslationKrEn";

interface TagSelectorProps {
selectedTags: string[];
onSelect: (selectedTags: string[]) => void;
}

export default function TagSelector({
selectedTags,
onSelect,
Expand Down

0 comments on commit 8a30520

Please sign in to comment.