diff options
| author | sharkiecodes <lanyi_stroud@brown.edu> | 2025-07-01 14:34:48 -0400 |
|---|---|---|
| committer | sharkiecodes <lanyi_stroud@brown.edu> | 2025-07-01 14:34:48 -0400 |
| commit | f49fa5010ac53eb87925d1cd40e3be145d441ea6 (patch) | |
| tree | 27cd8f786e9948c765ec0a893e8272c62a7c39a6 /src/client/views/collections/collectionFreeForm/CollectionFreeFormController.ts | |
| parent | 0e2abee77d5310056921fc50779349c0b36e166d (diff) | |
| parent | 86c666427ff8b9d516450a150af641570e00f2d2 (diff) | |
Merge branch 'agent-paper-main' into lanyi-expanded-agent-paper-main
Diffstat (limited to 'src/client/views/collections/collectionFreeForm/CollectionFreeFormController.ts')
| -rw-r--r-- | src/client/views/collections/collectionFreeForm/CollectionFreeFormController.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/client/views/collections/collectionFreeForm/CollectionFreeFormController.ts b/src/client/views/collections/collectionFreeForm/CollectionFreeFormController.ts new file mode 100644 index 000000000..6752b46b8 --- /dev/null +++ b/src/client/views/collections/collectionFreeForm/CollectionFreeFormController.ts @@ -0,0 +1,7 @@ +import { CollectionFreeFormView } from './CollectionFreeFormView'; + +export class TutorialController { + public static startTutorial(kind: 'links' | 'pins' | 'presentation') { + CollectionFreeFormView.showTutorial(kind); + } +} |
