Tldraw/components/code-panel/code-as-string.ts

10 wiersze
110 B
TypeScript
Czysty Zwykły widok Historia

2021-05-14 22:56:41 +00:00
// This is the code library.
export default `
2021-06-23 22:32:21 +00:00
class Circle {
greet(): string {
return "Hello!"
}
}
2021-05-14 22:56:41 +00:00
`