2021-09-05 23:24:53 +02:00
|
|
|
import SnapshotEditor from './components/SnapshotEditor'
|
|
|
|
import type {IExtension} from '@theatre/studio'
|
|
|
|
import Toolbar from './components/Toolbar/Toolbar'
|
|
|
|
|
|
|
|
const r3fExtension: IExtension = {
|
2021-09-06 10:19:10 +02:00
|
|
|
id: '@theatre/r3f',
|
2021-09-05 23:24:53 +02:00
|
|
|
globalToolbar: {
|
|
|
|
component: Toolbar,
|
|
|
|
},
|
|
|
|
panes: [
|
|
|
|
{
|
2021-09-05 23:37:29 +02:00
|
|
|
class: 'snapshot',
|
2021-09-05 23:24:53 +02:00
|
|
|
component: SnapshotEditor,
|
|
|
|
},
|
|
|
|
],
|
|
|
|
}
|
|
|
|
|
|
|
|
export default r3fExtension
|