React on Rails

rails new json-masterclass3 -d postgresql --javascript=esbuild --skip-test
bundle add react-rails
yarn add react
rails g react:component Post title:string published:bool
<%= react_component('Post', {title: 'Hello', published: true}, {camelize_props: true}) %>