2020-06-09 03:09:22 -04:00
---
page_type: sample
products:
- office-sp
languages:
- javascript
- typescript
extensions:
contentType: samples
technologies:
- SharePoint Framework
platforms:
- React
createdDate: 1/1/2016 12:00:00 AM
---
2020-11-08 23:38:06 -05:00
# Using Mobx
2016-11-10 10:48:31 -05:00
## Summary
2021-04-26 02:08:59 -04:00
Sample web part implementation that uses [Mobx ](https://github.com/mobxjs/mobx ) to keep track of its state.
2016-11-10 10:48:31 -05:00
### Reactive
![](https://i.gyazo.com/e6f1903b9a9c8201985cd25cc1fe28bc.gif)
### Non-Reactive
![](https://i.gyazo.com/876858e31cf14de1b6d1a281a0636029.gif)
2021-11-07 01:33:53 -05:00
## Compatibility
2023-02-10 10:22:32 -05:00
| :warning: Important |
|:---------------------------|
| Every SPFx version is only compatible with specific version(s) of Node.js. In order to be able to build this sample, please ensure that the version of Node on your workstation matches one of the versions listed in this section. This sample will not work on a different version of Node.|
|Refer to < https: / / aka . ms / spfx-matrix > for more information on SPFx compatibility. |
This sample is designed to be used in the following environments:
2022-10-17 10:21:52 -04:00
2021-11-07 01:33:53 -05:00
![SPFx 0.5.1 ](https://img.shields.io/badge/SPFx-0.5.0-orange.svg )
![Node.js v6 ](https://img.shields.io/badge/Node.js-v6-green.svg )
![Compatible with SharePoint Online ](https://img.shields.io/badge/SharePoint%20Online-Compatible-green.svg )
![Compatible SharePoint 2019 ](https://img.shields.io/badge/SharePoint%20Server%202019-Compatible-green.svg )
![Compatible with SharePoint 2016 (Feature Pack 2) ](https://img.shields.io/badge/SharePoint%20Server%202016%20(Feature%20Pack%202 )-Compatible-green.svg)
![Local Workbench Compatible ](https://img.shields.io/badge/Local%20Workbench-Compatible-green.svg )
![Hosted Workbench Compatible ](https://img.shields.io/badge/Hosted%20Workbench-Compatible-green.svg )
2022-03-11 16:05:30 -05:00
![Compatible with Remote Containers ](https://img.shields.io/badge/Remote%20Containers-Compatible-green.svg )
2021-11-07 01:33:53 -05:00
2022-10-17 10:21:52 -04:00
For more information about SPFx compatibility, please refer to https://aka.ms/spfx-matrix
2016-12-13 04:26:45 -05:00
2016-11-10 10:48:31 -05:00
## Applies to
2022-10-24 09:42:45 -04:00
* [SharePoint Framework Developer Preview ](https://learn.microsoft.com/sharepoint/dev/spfx/sharepoint-framework-overview )
* [Office 365 developer tenant ](https://learn.microsoft.com/sharepoint/dev/spfx/set-up-your-developer-tenant )
2016-11-10 10:48:31 -05:00
2023-02-18 22:58:44 -05:00
## Contributors
2016-11-10 10:48:31 -05:00
2023-03-15 01:23:34 -04:00
* [Kevin Mees ](https://github.com/kmees )
2016-11-10 10:48:31 -05:00
## Version history
Version|Date|Comments
-------|----|--------
1.0|November 4, 2016|Initial release
## Minimal Path to Awesome
2022-03-11 16:05:30 -05:00
```
> This sample can also be opened with [VS Code Remote Development](https://code.visualstudio.com/docs/remote/remote-overview). Visit https://aka.ms/spfx-devcontainer for further instructions.sh
2021-05-02 15:04:59 -04:00
$ git clone https://github.com/pnp/sp-dev-fx-webparts
2016-11-10 10:48:31 -05:00
$ cd sp-dev-fx-webparts/samples/react-mobx
$ npm install
$ gulp serve
```
2022-03-11 16:05:30 -05:00
> This sample can also be opened with [VS Code Remote Development](https://code.visualstudio.com/docs/remote/remote-overview). Visit https://aka.ms/spfx-devcontainer for further instructions.
2016-11-10 10:48:31 -05:00
## Features
* Presentational (dumb) components live in `./components`
* Container (smart) components live in `./container`
2021-04-26 02:08:59 -04:00
* Mobx stores are defined in `./store` with a sample web part store that keeps track of the web part properties.
2016-11-10 10:48:31 -05:00
2021-11-07 01:54:14 -05:00
## Disclaimer
**THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT.**
2023-03-12 21:16:15 -04:00
< img src = "https://m365-visitor-stats.azurewebsites.net/sp-dev-fx-webparts/samples/react-mobx" / >