feat: added components

This commit is contained in:
Smigz 2024-06-15 22:54:07 -04:00
parent 839c5a6b26
commit 18f5a11ed7
6 changed files with 97 additions and 47 deletions

View file

@ -1,13 +1,14 @@
import ContactInfo from './components/contactInfo'
import './App.css'
import GeneralInfo from "./components/generalInfo";
import EducationInfo from "./components/educationInfo";
import "./App.css";
function App() {
return (
<>
<ContactInfo />
<GeneralInfo />
<EducationInfo />
</>
)
);
}
export default App
export default App;