13 lines
403 B
JavaScript
13 lines
403 B
JavaScript
import React from "react";
|
|
|
|
export default class GanttPage extends React.Component{
|
|
|
|
render(){
|
|
|
|
return (
|
|
<div style={{height:'calc(100% - 37px)',width:"100%"}}>
|
|
<iframe src={"/proj/gantt/gantt.jsp?projectid=8&ProjID=8"} id="prjtabiframe" name="prjtabiframe" className="flowFrame" frameborder="0" width="100%" height="800px" />
|
|
</div>
|
|
)
|
|
}
|
|
} |