Opening modal from Livewire Component

I'm trying to open a modal from a livewire compoenent:
    public function createAction(): Action
    {
        return Action::make('create')
            ->form(MenuResource::getFormSchema())
            ->label('Create');

    }

<div>
    {{ $this->createAction }}
    <x-filament-actions::modals />
</div>

This does open the Modal, but without any of the syles from filament.
Any ideas?
Was this page helpful?