drfeely.com/website/app/views/EduAndProExp.tsx

20 lines
399 B
TypeScript
Raw Normal View History

2023-08-31 03:18:58 +00:00
import View from "@/components/View";
import ProExp from "./components/ProExp";
import Edu from "./components/Edu";
2023-08-31 03:18:58 +00:00
2023-08-25 19:06:28 +00:00
const EduAndProExp = () => {
return (
2023-08-31 03:18:58 +00:00
<View
bg_color="bg-primary-100"
txt_color="text-primary-500"
id="eduandproexp"
>
<h1>Education & Business</h1>
<Edu className="mb-10" />
<ProExp />
2023-08-31 03:18:58 +00:00
</View>
2023-08-25 19:06:28 +00:00
);
};
export default EduAndProExp;