🚧 add tag type picker

This commit is contained in:
yanyongyu
2021-12-31 18:21:32 +08:00
parent 56677616b4
commit c48231454e
7 changed files with 195 additions and 145 deletions

View File

@ -0,0 +1,9 @@
import React from "react";
export default function ModalTitle({ title }: { title: string }): JSX.Element {
return (
<div className="px-6 pt-4 pb-2 font-medium text-xl">
<span>{title}</span>
</div>
);
}