Initial commit

This commit is contained in:
dk
2026-01-16 17:44:35 +02:00
commit 9815d65404
12 changed files with 1571 additions and 0 deletions

12
src/App.js Normal file
View File

@@ -0,0 +1,12 @@
import React from 'react';
import SecurityCheck from './components/SecurityCheck';
function App() {
return (
<div className="App">
<SecurityCheck />
</div>
);
}
export default App;