Files
lucide/docs/guide/preact/basics/examples/files.ts
2025-11-19 23:24:08 +01:00

24 lines
429 B
TypeScript

import index from './index.js?raw'
import packageJson from './package.json?raw'
import indexHtml from './index.html?raw'
import styles from './styles.css?raw'
export const preactFiles = {
'index.js': {
code: index,
hidden: true
},
'package.json': {
code: packageJson,
hidden: true
},
'index.html': {
code: indexHtml,
hidden: true
},
'styles.css': {
code:styles,
hidden: true
},
}