Skip to content

Latest commit

 

History

History
24 lines (20 loc) · 745 Bytes

README.md

File metadata and controls

24 lines (20 loc) · 745 Bytes

Running the server

npm install
npm run dev -- --open

Hunger Games Simulator

If you came here looking for the Hunger Games Simulator, it’s here:

Creating a page

To create the page /foo/bar/baz, create the directories in the src/routes directory, in this case, create /src/routes/foo/bar/baz, and then create a +page.svelte file in that directory, containing

<script>
  import Page from '$lib/components/Page.svelte';
</script>

<Page name="Page Name Goes Here" />

<!-- Page Content Goes Here -->