-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added a lot more backend features and completed a form for adding a s…
…ociety
- Loading branch information
1 parent
5585a33
commit 319f7d0
Showing
17 changed files
with
804 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
13 changes: 13 additions & 0 deletions
13
frontend/src/components/CreateCommunity/CreateCommunityDialog.svelte
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<script lang="ts"> | ||
import CreateCommunityForm from "./CreateCommunityForm.svelte"; | ||
import * as Dialog from "$lib/components/ui/dialog/index.js"; | ||
import { Button } from "$lib/components/ui/button/index.js"; | ||
</script> | ||
|
||
<Dialog.Content> | ||
<CreateCommunityForm childIsCloseButton={true}> | ||
<Dialog.Close> | ||
<Button variant="outline">Cancel</Button> | ||
</Dialog.Close> | ||
</CreateCommunityForm> | ||
</Dialog.Content> |
Oops, something went wrong.