In node (using ejs) I can usually go:
res.render('home', {
data: someData
});
is this still possible in react? I don't want to do client-side loading (via .ajax) for all my data, rather load some initial data and pass it to react (or flux). I haven't been able to find any examples of this.