diff --git a/client/src/App.tsx b/client/src/App.tsx new file mode 100644 index 0000000..958a48d --- /dev/null +++ b/client/src/App.tsx @@ -0,0 +1,46 @@ + +import React, { useState } from 'react'; + +import './App.css'; + + +const Cluster = () => { + return ( +
cluster
+ ); +}; + +type Identity = { + lastName: string, + middleName: string, + firstName: string, + descriptors: number[], + id: number + displayName: string, +}; + +const Identities = () => { + const [identities, setIdentities] = useState([]); + + const identitiesJSX = identities.map(identity => ( + {identity.id.toString()} + )) + return ( +
+ { identitiesJSX } +
+ ); +}; + +const App = () => { + return ( +
+
+ + +
+
+ ); +} + +export default App;