docs: fix auto-imports example (#19520) (#19690)

This commit is contained in:
Matthew Woods 2023-03-15 06:24:59 -04:00 committed by GitHub
parent 184d57bb19
commit f9d7e1c900
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

View File

@ -0,0 +1 @@
export * from './nested/bar'

View File

@ -0,0 +1,3 @@
export function useNestedBar () {
return 'bar'
}