I am fairly new to react but doing well! I am looking to build a simple 'add' profile application. My UX designs include the following flow:
Home page (with add new page button)
Opens a blank page (with a save button that returns to home page)
Home page is rendered, but with a card component that is a link to the page that was just created.
My application currently has react router but for basic links between home and other pages, but this I think might be different.
What would be the best methods for this to work? I know it might have something to do with mapping a reusable 'new page component' and 'card component', with the card component rendering with the correct routing, but would I need something else like MySQL?
Thank you