I would like to simply initialize the Container state with data from an api call using unstated.js (a React Context wrapper).
I saw one example where the Container was instantiated with a couple vars:
import { Container} from 'unstated';
class WordlistContainer extends Container {
constructor(...words) {
super();
this.state = {
words: words
};
}
}
let wordList = new WordlistContainer('word1', 'word2');
export default wordList;
If I want to fetch some api data to pass into this Container's state - is this the right way to do it? Or should I pass props from a parent component? This is for loading data into a SPA when it first loads.
This ended up working: