Progress Commit

Signed-off-by: Dave Richer <dave@imexsystems.ca>
This commit is contained in:
Dave Richer
2024-05-17 16:29:46 -04:00
parent c3108a17f4
commit 55d729339f
9 changed files with 440 additions and 511 deletions

View File

@@ -1,10 +1,13 @@
import React from "react";
import { DelButton, DeleteWrapper } from "../styles/Elements";
import { DeleteWrapper } from "../styles/Elements";
import { Button } from "antd";
const DeleteButton = (props) => {
return (
<DeleteWrapper {...props}>
<DelButton>&#10006;</DelButton>
<Button type="primary" danger>
Delete
</Button>
</DeleteWrapper>
);
};