Build a greeter app
Building a Greeter app
Create an app
Create an app with the title “Greeter”. Run the following command and provide the information it is looking for.
Install the app
The app is created in Step 1 and we should install it now.
Add the functionality
The app is installed but it doesn’t do anything because we haven’t written added any functionality to it. Let’s add a button in the main navigation that greets the user.
-
Create a component
greeter/components/GreeterButton.tsx
- You can name it whatever you want. -
Import this component in
Shell.tsx
and add it wherever you want to so that the button is available on all pages.
A sample line where I used the component in the demo
That’s it. You now have a fully functional Greeter app. This is the simplest possible demonstration of how you can build an app and what it can do. There are simply no restrictions on what an app can achieve.
Was this page helpful?