create-foldkit-app 0.7.2 → 0.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/examples.js +6 -0
- package/package.json +1 -1
package/dist/examples.js
CHANGED
|
@@ -9,6 +9,7 @@ export const EXAMPLE_VALUES = [
|
|
|
9
9
|
'routing',
|
|
10
10
|
'query-sync',
|
|
11
11
|
'snake',
|
|
12
|
+
'canvas-art',
|
|
12
13
|
'auth',
|
|
13
14
|
'shopping-cart',
|
|
14
15
|
'pixel-art',
|
|
@@ -67,6 +68,11 @@ export const examples = [
|
|
|
67
68
|
title: 'snake',
|
|
68
69
|
description: 'Classic game built with subscriptions',
|
|
69
70
|
},
|
|
71
|
+
{
|
|
72
|
+
value: 'canvas-art',
|
|
73
|
+
title: 'canvas-art',
|
|
74
|
+
description: 'Declarative 2D canvas with shapes, animation-frame Subscriptions, and pointer events',
|
|
75
|
+
},
|
|
70
76
|
{
|
|
71
77
|
value: 'auth',
|
|
72
78
|
title: 'auth',
|