mirror of
https://gitea.smigz.com/smiggiddy/odin-codeprojects.git
synced 2025-06-28 12:55:36 -04:00
14 lines
246 B
JavaScript
14 lines
246 B
JavaScript
import GeneralInfo from "./components/generalInfo";
|
|
import EducationInfo from "./components/educationInfo";
|
|
import "./App.css";
|
|
|
|
function App() {
|
|
return (
|
|
<>
|
|
<GeneralInfo />
|
|
<EducationInfo />
|
|
</>
|
|
);
|
|
}
|
|
|
|
export default App;
|