mirror of
https://github.com/tips-of-mine/GLPI-Plugin-SOC-Case-Management.git
synced 2025-08-24 22:35:48 +02:00
12 lines
240 B
TypeScript
12 lines
240 B
TypeScript
import React from 'react';
|
|
|
|
function App() {
|
|
return (
|
|
<div className="min-h-screen bg-gray-100 flex items-center justify-center">
|
|
<p>Start prompting (or editing) to see magic happen :)</p>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default App;
|