init
This commit is contained in:
12
src/pages/V3D/V3D1.jsx
Normal file
12
src/pages/V3D/V3D1.jsx
Normal 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
0
src/pages/V3D/V3D1.less
Normal file
13
src/pages/V3D/index.jsx
Normal file
13
src/pages/V3D/index.jsx
Normal 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
5
src/pages/V3D/index.less
Normal file
@@ -0,0 +1,5 @@
|
||||
.CenterV3DBorderinside {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user