chore: remove unused example assets (fixes #2)

Delete hello_controller.js and Hello.jsx, which are Symfony/UX
boilerplate files not referenced anywhere in the project.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
thibaud-lclr 2026-04-05 14:22:20 +02:00
parent 61851ac19a
commit 15a50e02e4
2 changed files with 0 additions and 21 deletions

View file

@ -1,16 +0,0 @@
import { Controller } from '@hotwired/stimulus';
/*
* This is an example Stimulus controller!
*
* Any element with a data-controller="hello" attribute will cause
* this controller to be executed. The name "hello" comes from the filename:
* hello_controller.js -> "hello"
*
* Delete this file or adapt it for your use!
*/
export default class extends Controller {
connect() {
this.element.textContent = 'Hello Stimulus! Edit me in assets/controllers/hello_controller.js';
}
}

View file

@ -1,5 +0,0 @@
import React from 'react';
export default function (props) {
return <div>Hello {props.fullName}</div>;
}