feat: board creation and actions dropdown

This commit is contained in:
2025-08-07 09:19:30 +04:00
parent 4b843d8e5d
commit 335fbfe81c
12 changed files with 341 additions and 61 deletions

View File

@ -8,11 +8,16 @@ type Props = {
children: ReactNode;
};
const StatusColumnWrapper = ({ status, children, isDragging = false }: Props) => {
const StatusColumnWrapper = ({
status,
children,
isDragging = false,
}: Props) => {
return (
<Box
style={{
backgroundColor: "#eee",
borderWidth: 1,
borderColor: "gray",
padding: 2,
width: "15vw",
minWidth: 150,