宽敞,简单,可扩展的状态管理框架 // -- core.js ------------------------------------------ // Let's start by creating an Instance of AgileTs const App = new Agile ( ) ; // Now we are able to build our first State :grinning_face_with_big_eyes: const MY_FIRST_STATE = App . createState ( "Hello Stranger!" ) ; // -- my