Files
python/exercises/practice/react/react.py
2022-12-10 14:57:17 -08:00

15 lines
290 B
Python

class InputCell:
def __init__(self, initial_value):
self.value = None
class ComputeCell:
def __init__(self, inputs, compute_function):
self.value = None
def add_callback(self, callback):
pass
def remove_callback(self, callback):
pass