index.js 336 Bytes
Newer Older
xuchaozou's avatar
xuchaozou committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
import {Preview} from '@wisdom-cesium/krpano'

const Krpano = props => {

    const {projectName} = props
    
    return (<div
        style={{
            position : "relative",
            width : "100%",
            height : "100%"
        }}
    >
        <Preview projectName = {projectName}/>
    </div>)
}

export default Krpano