This commit is contained in:
2022-03-22 17:47:26 -05:00
commit da78983719
9 changed files with 1297 additions and 0 deletions

10
src/app.tsx Normal file
View File

@@ -0,0 +1,10 @@
import { render } from 'preact';
import Text3D from './text';
function App() {
return (
<Text3D width={800} height={500} style={'border: 1px solid black'} scale={0.5}>text</Text3D>
)
}
render(<App />, document.body);