Add files via upload

This commit is contained in:
Gregory Bednov 2025-01-16 18:08:10 +03:00 committed by GitHub
commit a3243dd1ba
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
14 changed files with 871 additions and 0 deletions

17
App.svelte Normal file
View file

@ -0,0 +1,17 @@
<script>
import AddObjectForm from './AddObjectForm.svelte';
import Diagram from './Diagram.svelte';
</script>
<main>
<h1>FSA Editor</h1>
<AddObjectForm/>
<Diagram />
</main>
<style>
main {
font-family: Arial, sans-serif;
padding: 1rem;
}
</style>