| 1 | <html> |
| 2 | |
| 3 | <head> |
| 4 | <title>File structure test</title> |
| 5 | <script type="module"> |
| 6 | import { store } from "/components/projects/projects-store.js"; |
| 7 | </script> |
| 8 | </head> |
| 9 | |
| 10 | <body> |
| 11 | <div x-data> |
| 12 | <template x-if="$store.projects && $store.projects.selectedProject"> |
| 13 | <div> |
| 14 | |
| 15 | <h3>File structure test - <span x-text="$store.projects.selectedProject.name"></span></h3> |
| 16 | <pre x-text="$store.projects.fileStructureTestOutput"></pre> |
| 17 | |
| 18 | </div> |
| 19 | </template> |
| 20 | </div> |
| 21 | </body> |
| 22 | <style> |
| 23 | </style> |
| 24 | |
| 25 | </html> |