How to Nest pages in svelte

I have 2 pages

<Page name="name">
<Page name ="reg">

I tried something similar to the below code - nesting attempt:

<RegPage>
  <NamePage />
</RegPage>

but that does not work.

Appreciate any help.

Newbie to framework7!

Pages can not be nested

@nolimits4web Thanks. Can you point me to some information as to make a Page reusable - is that via Link or some other mechanisms?

Thanks

But this code is useless:

<RegPage>
  <NamePage />
</RegPage>

And basically can be just replaced by

<NamePage />

Or by specifying same component for different route.

If you need to reuse some specific page content, then it can be “wrapped” as component

Thank you very much.