5 lines
186 B
JavaScript
5 lines
186 B
JavaScript
|
|
import OrgInfoGuard from "~/components/OrgInfoGuard";
|
||
|
|
|
||
|
|
export default function EduAgentTraining(props) {
|
||
|
|
return <OrgInfoGuard history={props.history}>{props.children}</OrgInfoGuard>;
|
||
|
|
}
|