10 lines
243 B
TypeScript
10 lines
243 B
TypeScript
import { render } from 'preact';
|
|
import Text3D from './text';
|
|
|
|
function App() {
|
|
return (
|
|
<Text3D width={800} height={500} style={'border: 1px solid black'} zoom={2} scale={1/8}>text</Text3D>
|
|
)
|
|
}
|
|
|
|
render(<App />, document.body); |