This commit is contained in:
lb
2023-06-30 11:08:43 +08:00
commit 3c69bc58bf
131 changed files with 4841 additions and 0 deletions

12
src/pages/V3D/V3D1.jsx Normal file
View File

@@ -0,0 +1,12 @@
import React from 'react'
import V3D from "../../components/V3DComp/V3DApp1"
import './V3D1.less'
export default function V3D1() {
return (
<>
<V3D />
</>
)
}

0
src/pages/V3D/V3D1.less Normal file
View File

13
src/pages/V3D/index.jsx Normal file
View File

@@ -0,0 +1,13 @@
import React, { Component } from 'react';
import V3D1 from './V3D1.jsx';
import './index.less';
export default class index extends Component {
render() {
return (
<div className="CenterV3DBorderinside">
<V3D1 />
</div>
);
}
}

5
src/pages/V3D/index.less Normal file
View File

@@ -0,0 +1,5 @@
.CenterV3DBorderinside {
width: 100%;
height: 100%;
}