@@ -4,7 +4,6 @@ import Spacer from '../../../../components/other/Spacer';
44import SectionScroller , {
55 SectionInterface ,
66} from '../../../../components/other/SectionScroller' ;
7- import { FiEdit , FiRepeat , FiServer , FiUsers , FiZap } from 'react-icons/all' ;
87import PlainButton from '../../../../components/buttons/PlainButton' ;
98
109const sections : SectionInterface [ ] = [
@@ -23,7 +22,7 @@ MY_STATE.set("Frank");
2322 title : 'Create State' ,
2423 description :
2524 'Create an Information we need to remember at a later point in time.' ,
26- icon : < FiZap /> ,
25+ icon : 'zap' ,
2726 } ,
2827 {
2928 code : `
@@ -36,7 +35,7 @@ const myState = useAgile(MY_STATE);
3635 ` ,
3736 title : 'Subscribe State' ,
3837 description : 'Bind any State to any Component.' ,
39- icon : < FiRepeat /> ,
38+ icon : 'repeat' ,
4039 } ,
4140 {
4241 code : `
@@ -52,7 +51,7 @@ MY_COLLECTION.collect({id: 1, name: "Jeff"});
5251 ` ,
5352 title : 'Create set of States' ,
5453 description : 'Create a dynamic and reactive set of States.' ,
55- icon : < FiUsers /> ,
54+ icon : 'users' ,
5655 } ,
5756 {
5857 code : `
@@ -64,7 +63,7 @@ MY_STATE.persist();
6463 ` ,
6564 title : 'Persist State' ,
6665 description : 'Store State permanently in any Storage.' ,
67- icon : < FiServer /> ,
66+ icon : 'server' ,
6867 } ,
6968 {
7069 code : `
@@ -82,7 +81,7 @@ const IS_AUTH = App.createComputed(() => {
8281 ` ,
8382 title : 'Compute State' ,
8483 description : 'Compute State depending on other States.' ,
85- icon : < FiEdit /> ,
84+ icon : 'edit' ,
8685 } ,
8786] ;
8887
0 commit comments