-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ab6ddaf
commit 55e3c8d
Showing
5 changed files
with
587 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
// import code1 from '!!raw-loader!./step1-code'; | ||
// import completedCode1 from '!!raw-loader!./step1-completed-code'; | ||
// import code2 from '!!raw-loader!./step2-code'; | ||
// import completedCode2 from '!!raw-loader!./step2-completed-code'; | ||
// import code3 from '!!raw-loader!./step3-code'; | ||
// import completedCode3 from '!!raw-loader!./step3-completed-code'; | ||
// import code4 from '!!raw-loader!./step4-code'; | ||
// import completedCode4 from '!!raw-loader!./step4-completed-code'; | ||
// import code5 from '!!raw-loader!./step5-code'; | ||
// import completedCode5 from '!!raw-loader!./step5-completed-code'; | ||
import code6 from '!!raw-loader!./step6-code'; | ||
import type { TutorialStep } from '../..'; | ||
// import content1 from './step1-content.md'; | ||
// import content2 from './step2-content.md'; | ||
// import content3 from './step3-content.md'; | ||
// import content4 from './step4-content.md'; | ||
// import content5 from './step5-content.md'; | ||
import content6 from './step6-content.md'; | ||
|
||
export const chooChooTrainTutorialSteps: TutorialStep[] = [ | ||
// { | ||
// header: 'Introduction', | ||
// Content: content1, | ||
// code: code1, | ||
// completedCode: completedCode1, | ||
// }, | ||
// { | ||
// header: 'Adding Background', | ||
// Content: content2, | ||
// code: code2, | ||
// completedCode: completedCode2, | ||
// }, | ||
// { | ||
// header: 'Adding Fishes', | ||
// Content: content3, | ||
// code: code3, | ||
// completedCode: completedCode3, | ||
// }, | ||
// { | ||
// header: 'Adding Water Overlay', | ||
// Content: content4, | ||
// code: code4, | ||
// completedCode: completedCode4, | ||
// }, | ||
// { | ||
// header: 'Adding Displacement Effect', | ||
// Content: content5, | ||
// code: code5, | ||
// completedCode: completedCode5, | ||
// }, | ||
{ | ||
header: 'You did it!', | ||
Content: content6, | ||
code: code6, | ||
}, | ||
]; |
Oops, something went wrong.