11 lines
255 B
TypeScript
11 lines
255 B
TypeScript
import LinePageBabylon from "../../../babylonjs/LinePageBabylonNew";
|
|
function CenterUp() {
|
|
const lineID = "5-2";
|
|
return (
|
|
<div className="center_up">
|
|
<LinePageBabylon modelPath={`Line${lineID}`} />
|
|
</div>
|
|
);
|
|
}
|
|
export default CenterUp;
|