blob: c7357c01a700abee1f76a85068f98b79d80ccd4b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<script>
import RulesView from "$lib/components/RulesView.svelte";
</script>
<div class="container">
<RulesView />
</div>
<style scoped lang="scss">
.container {
max-width: 800px;
margin: 0 auto;
}
</style>
|