mirror of
https://github.com/djdevin/recflare.git
synced 2026-09-09 15:11:29 -07:00
17 lines
214 B
Handlebars
17 lines
214 B
Handlebars
/**
|
|
* Example function.
|
|
*
|
|
* @example
|
|
*
|
|
* Use from other apps/packages:
|
|
*
|
|
* ```ts
|
|
* import { hello } from '@repo/{{ slug name }}'
|
|
*
|
|
* hello()
|
|
* ```
|
|
*/
|
|
export function hello() {
|
|
return 'Hello, world!'
|
|
}
|