kashi326 / inertia-react-laravel-template

Avoid using spreading operator for JSX props JS-0428
Anti-pattern
Minor
2 years ago2 years old
Prop spreading is forbidden
21createInertiaApp({
22    resolve: (name) => require(`./Pages/${name}`),
23    setup({el, App, props}) {
24        render(<App {...props} />, el);25    },
26}).then(r => console.clear());