@@ -22,21 +22,22 @@ slug: /core
2222## ❓ ` core `
2323
2424The ` core ` package is the brain of AgileTs.
25- Nearly everything that has something to do with AgileTs depends on this package.
26- The main reason for that, is that it holds the main ` Agile Class ` , here called ` App ` .
25+ Nearly everything that is related to AgileTs depends on this package.
26+ The main reason for this is that it includes the main Instance of AgileTs,
27+ the ` Agile Class ` here called ` App ` .
2728``` ts
2829const App = new Agile ();
2930```
30- In summary, the main tasks of such an instantiated ` Agile Class ` are to
31- - manage our Agile Sub Instances ([ State] ( ./features/state/Introduction.md ) , ..)
31+ In summary, the main tasks of the ` Agile Class ` are to
32+ - manage and store our Agile Sub Instances ([ State] ( ./features/state/Introduction.md ) , ..)
3233- ingest changes into the Runtime
3334- trigger rerender on Integrations like [ React] ( ../react/Introduction.md )
3435
3536As you can guess each application uses AgileTs has to install
36- the ` core ` package and instantiate such an Agile Instance .
37- To get some inspiration where to instantiate such ` Agile Class ` , checkout the [ style guide] ( ../../main/StyleGuide.md ) .
38- Beside the Agile Instance the ` core ` holds some other useful classes which are
39- listed below. But each of these classes depends in some kind on the Agile Instance .
37+ the ` core ` package and instantiate such an ` Agile Class ` .
38+ To get some inspiration where to instantiate our ` Agile Class ` , checkout the [ style guide] ( ../../main/StyleGuide.md ) .
39+ Beside the ` Agile Class ` the ` core ` holds some other useful classes which are
40+ listed below. But each of these classes depends in some kind on the ` Agile Class ` .
4041
4142### ⚡️ [ State] ( ./features/state/Introduction.md )
4243A State holds an Information that we need to remember at a later point in time.
0 commit comments