Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added folder location in add store section #227

Merged
merged 3 commits into from
Jul 13, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
added review comment changes
  • Loading branch information
adiakhaitan committed Jul 13, 2019
commit 9d365da828657db5fceca9fc8be2a51799c33623
2 changes: 1 addition & 1 deletion docs/src/getting-started/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ At this point you should have all the necessary packages to continue development

## Add a Store

Now, let's create a MobX store. A store in MobX is a way of collecting the related observable state under one class. The store allows us to use annotations and keeps the code simple. Create a new file `counter.dart` in lib folder and add the following code to it.
Now, let's create a MobX store. A store in MobX is a way of collecting the related observable state under one class. The store allows us to use annotations and keeps the code simple. Create a new file `counter.dart` in `\lib` folder and add the following code to it.

```dart
import 'package:mobx/mobx.dart';
Expand Down