File size: 564 Bytes
8d1819a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<html>

<head>
    <title>File structure test</title>
    <script type="module">
        import { store } from "/components/projects/projects-store.js";
    </script>
</head>

<body>
    <div x-data>
        <template x-if="$store.projects && $store.projects.selectedProject">
            <div>

                <h3>File structure test - <span x-text="$store.projects.selectedProject.name"></span></h3>
                <pre x-text="$store.projects.fileStructureTestOutput"></pre>

            </div>
        </template>
    </div>
</body>
<style>
</style>

</html>