Files
python/exercises/react/react.py

18 lines
339 B
Python
Raw Normal View History

class Cell(object):
def set_value(value):
pass
def add_watcher(self, watcher_callback):
pass
def remove_watcher(self, watcher_callback):
pass
class Reactor(object):
def create_input_cell(self, value):
pass
def create_compute_cell(self, dependencies, updater_callback):
pass