Files
planet/frontend/src/pages/Earth/Earth.tsx

17 lines
251 B
TypeScript

function Earth() {
return (
<iframe
src="/earth/index.html"
style={{
width: '100%',
height: '100%',
border: 'none',
display: 'block',
}}
title="3D Earth"
/>
)
}
export default Earth