fjohanssondev / podcast-app

https://podcast-app-henna.vercel.app
0 stars 0 forks source link

Create a Dialog component #20

Open fjohanssondev opened 1 year ago

fjohanssondev commented 1 year ago

The Dialog component should use the HTML5 dialogelement. It's purpose is mainly when a user might want to add something, then a pop-up would appear.

Features:

Example of structure


<Dialog.Root>
  <Dialog.Title>
    Hello World
  </Dialog.Title>
  <Dialog.Content>
    This will be the content of the dialog
  </Dialog.Content>
  <Dialog.Cancel>
    <button>Close</button>
  </Dialog.Cancel>
  <Dialog.Action>
    <button>Add</button>
  </Dialog.Action>
</Dialog.Root>