Remove f7f7f7
article thumbnail

Gatsby Serverless Functions And The International Space Station

Smashing Magazine Graphics

import React from 'react'; const ThreeSphere = () => { return ( <mesh> <sphereGeometry args={[100, 32, 32]} /> <meshBasicMaterial color="#f7f7f7" transparent={true} opacity={0.6} /> </mesh> ); }; export default ThreeSphere; If the syntax above looks a little different to that of the Three.js

Coding 129