Hello @cabutler10 Thanks for your question here. My first question to you is have you looked at our documentation over on the Splunk UI Site? There are two subpages I would call out: https://splunkui.splunk.com/Packages/create/Overview https://splunkui.splunk.com/Create/AppTutorial The idea of "pages" when it comes to Splunk vs React is a little bit funky. But it should be doable if you marry the two together. The tutorial above will help you generate a Hello World style Splunk app with a page. We do have plans to improve @splunk/create to help users easily generate a second page in their app via a CLI. However today you can do it quite easily as well with a generated @splunk/create app. Documentation below: In the below example I'm adding a new page called "test". To start, you'd need to add three files which are lighted in the screenshot. You could copy all of the files from "start" to make this easier. The only change you'd need to make in the xml file is changing the template parameter from template="dev-testing-app:/templates/start.html" to template="dev-testing-app:/templates/test.html" As a bonus, feel free to take a look at our popular @splunk/react-ui library.
... View more