- WordPress core y plugins - Tema Twenty Twenty-Four configurado - Plugin allow-unfiltered-html.php simplificado - .gitignore configurado para excluir wp-config.php y uploads 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
13 lines
361 B
JavaScript
Executable File
13 lines
361 B
JavaScript
Executable File
import {render} from '@wordpress/element';
|
|
import {Button} from "@wordpress/components";
|
|
import '@wordpress/components/build-style/style.css';
|
|
|
|
const App = () => {
|
|
return (
|
|
<>
|
|
<Button isPrimary onClick={() => console.log('Hello World')}>Hello World</Button>
|
|
</>
|
|
);
|
|
}
|
|
|
|
render(<App/>, document.getElementById('bwfcrm-public')); |