This commit is contained in:
Philippe Torrel
2026-08-06 10:45:04 +02:00
parent fae4f8f7ce
commit 2814319650
18 changed files with 730 additions and 47 deletions

View File

@@ -1,10 +1,10 @@
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import './index.css'
import App from './App.jsx'
import { StrictMode } from 'react';
import { createRoot } from 'react-dom/client';
import './index.css';
import App from './App.jsx';
createRoot(document.getElementById('root')).render(
<StrictMode>
<App />
</StrictMode>,
)
);

View File

@@ -6,6 +6,6 @@ const ProductListItem = (props) => {
<h3>{title}</h3>
{children || <p>{description}</p>}
</li>
);
); // View
};
export default ProductListItem;