9 lines
192 B
JavaScript
9 lines
192 B
JavaScript
import React from "react";
|
|
import { ComingSoonPage } from "../../pages/Misc/ComingSoonPage";
|
|
|
|
const WorkPlan = () => {
|
|
return <ComingSoonPage></ComingSoonPage>;
|
|
};
|
|
|
|
export default WorkPlan;
|