# Demo content for Stripe Apps Learn tips for displaying a demo of your app. When building a demo of your app, keep the content brief and only highlight the top functionality that your app offers. ## Before you begin [Create an app](https://docs.stripe.com/stripe-apps/create-app.md). ## Suggested use - Add a dedicated page view that doesn’t interfere with the onboarding flow. - Provide “just enough” information to communicate the main functionality of your app. For example: ![](https://b.stripecdn.com/docs-statics-srv/assets/demo-content.019b1bd485c337fe7592b54ef729db53.png) ## Example The following sample shows demo content displayed within a `SignInView` component: ```jsx import {SignInView, Banner, Button} from '@stripe/ui-extension-sdk/ui'; import appIcon from './icon.svg'; const Onboarding = () => ( Don't have an account? Sign up } descriptionActionLabel="View demo" descriptionActionTitle="Todo lists" descriptionActionContents={ <> ...continued app demo content. } brandColor="#635bff" brandIcon={appIcon} /> ); ```