The create button needs to exist

This commit is contained in:
Regalijan 2024-11-01 15:13:19 -04:00
parent abedaa8d20
commit 87e8c86497
Signed by: regalijan
GPG Key ID: 5D4196DA269EF520

View File

@ -1,4 +1,5 @@
import { import {
Button,
Container, Container,
FormControl, FormControl,
FormHelperText, FormHelperText,
@ -108,6 +109,9 @@ export default function () {
not provide one. Max 256 characters. not provide one. Max 256 characters.
</FormHelperText> </FormHelperText>
</FormControl> </FormControl>
<Button mt="16px" onClick={async () => await createLink()}>
Create
</Button>
</Container> </Container>
); );
} }