At the moment simple_form does not support ruby on rails 6 action_text with the rich_text_area input field. So at the moment my input field can look like this in posts/_form.html.haml:
= f.label :description
= f.rich_text_area :description
= f.error :description, class: 'text-danger'
How to make it work as = f.input :description and have a rich text area?