File tree 2 files changed +8
-6
lines changed
packages/@sanity/cli/templates/core-app/src
2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -4,15 +4,17 @@ import {ExampleComponent} from './ExampleComponent'
4
4
import './App.css'
5
5
6
6
export function App ( ) {
7
- const sanityConfig : SanityConfig = {
8
- auth : {
9
- authScope : 'global'
7
+ // apps can access many different projects or other sources of data
8
+ const sanityConfigs : SanityConfig [ ] = [
9
+ {
10
+ projectId : 'project-id' ,
11
+ dataset : 'dataset-name' ,
10
12
}
11
- }
13
+ ]
12
14
13
15
return (
14
16
< div className = "app-container" >
15
- < SanityApp sanityConfig = { sanityConfig } >
17
+ < SanityApp sanityConfigs = { sanityConfigs } >
16
18
{ /* add your own components here! */ }
17
19
< ExampleComponent />
18
20
</ SanityApp >
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ export function ExampleComponent() {
13
13
< pre > { `import {YourComponent} from './YourComponent'
14
14
15
15
// Then use it in your JSX
16
- <SanityApp sanityConfig={sanityConfig }>
16
+ <SanityApp sanityConfigs={sanityConfigs }>
17
17
<YourComponent />
18
18
</SanityApp>` } </ pre >
19
19
</ div >
You can’t perform that action at this time.
0 commit comments