Skip to content

Instantly share code, notes, and snippets.

@viettranx
viettranx / TaskListStore.js
Last active April 13, 2018 09:25
Simple store with MobX
import { observable, action } from 'mobx'
class TaskListStore {
@observable list = [
{ title: 'Go to the office', isFinished: true },
{ title: 'Prepare tasks for today', isFinished: false },
{ title: 'Team meeting', isFinished: false },
{ title: 'Commit tasks changed', isFinished: false }
]
@viettranx
viettranx / TaskList.js
Last active February 21, 2021 09:52
Simple task list with some basic actions in React Native
import React, { Component } from 'react'
import {
StyleSheet,
Text,
TouchableOpacity,
FlatList,
View
} from 'react-native'
export default class TaskListScreen extends Component {