new project structure

This commit is contained in:
Chris Wanstrath 2025-10-01 20:44:00 -07:00
parent f9792eb31c
commit e88627693c
13 changed files with 12 additions and 1 deletions

3
nose/chris/bin/chris.ts Normal file
View File

@ -0,0 +1,3 @@
export default function () {
return "chris works!"
}

View File

Before

Width:  |  Height:  |  Size: 1.3 MiB

After

Width:  |  Height:  |  Size: 1.3 MiB

3
nose/corey/bin/corey.ts Normal file
View File

@ -0,0 +1,3 @@
export default function () {
return "corey works!"
}

View File

Before

Width:  |  Height:  |  Size: 150 KiB

After

Width:  |  Height:  |  Size: 150 KiB

3
nose/hello/bin/hello.tsx Normal file
View File

@ -0,0 +1,3 @@
export default function () {
return <h1>HELLO!</h1>
}

View File

@ -1,2 +1,2 @@
export default () => export default () =>
"pong" "pong"

2
nose/sys/bin/sys.ts Normal file
View File

@ -0,0 +1,2 @@
export default () =>
"sys online"