How do you render live component from inside another live component?

I am creating my first phoenix live view application which allows user to fill in a quote form.
This form has from and to address sections and a table section where the user can create one or more items specifying the product, number of items, lengh, width and weight of each item.

I used the generator which created 2 live components, one for the quote and the other for items.
Questions:

  1. How do i embed the quote_and items live components onto a single form?
  2. Should i rather be rendering the items table and its actions as part of a quote form render function?