feat: updated component

This commit is contained in:
Smigz 2024-06-15 08:31:44 -04:00
parent 940deff071
commit 839c5a6b26
15 changed files with 4780 additions and 0 deletions

13
cv-project/src/App.jsx Normal file
View file

@ -0,0 +1,13 @@
import ContactInfo from './components/contactInfo'
import './App.css'
function App() {
return (
<>
<ContactInfo />
</>
)
}
export default App