webgl_hash_webgl.tsx
1 import Code from "../../Code"; 2 import Output from "../../Output"; 3 4 const WebglHashWebglDemo = () => { 5 return ( 6 <div> 7 <Code 8 snippet={` 9 TODO 10 `.trim()} 11 /> 12 13 <Output 14 generator={() => { 15 return void 0; // TODO 16 }} 17 /> 18 </div> 19 ); 20 }; 21 22 export default WebglHashWebglDemo;