Fab in child component is not showing

If you put Fab directly in the page, it will be shown. If you take the very same code and put it in child component, it won’t bee shown.

// will work
<Page>
  <Fab .... />
</Page>

// WONT work
<Page>
  <SomeComponet .... />
</Page>

export default const SomeComponent() => {
  return <Fab .... />
}

When I mean “not work” I mean that the Fab doesn’t appear in the page at all.

Do you have slot somewhere, it should be set on SomeComponent, e.g.:

<Page>
  <SomeComponet slot="fixed" .... />
</Page>

Works many thanks :slight_smile: