Refactor code structure for improved readability and maintainability

This commit is contained in:
2026-02-22 01:54:55 +08:00
parent 1db31d13e6
commit f3c269dd83
27 changed files with 4689 additions and 123 deletions

View File

@@ -70,7 +70,7 @@ const TableList = () => {
open={openPopover === user.id}
onOpenChange={(open) => setOpenPopover(open ? user.id : null)}
>
<PopoverTrigger asChild>
<PopoverTrigger>
<Button
variant="destructive"
size="sm"
@@ -221,6 +221,4 @@ export const List = () => {
);
};
export default () => {
return <LayoutMain><List /></LayoutMain>;
}
export default <List />