Skip to content

Instantly share code, notes, and snippets.

@cevr
Created June 8, 2019 22:10
Show Gist options
  • Save cevr/f76a7558eb82aee6574df675b34709bb to your computer and use it in GitHub Desktop.
Save cevr/f76a7558eb82aee6574df675b34709bb to your computer and use it in GitHub Desktop.
export default function App() {
const fetchTodos = useActions(actions => actions.fetchTodos);
useEffect(() => {
fetchTodos();
}, [fetchTodos]);
return (
<div>
<h1 style={{ margin: 0 }}>Todo</h1>
<Todos />
<AddTodo />
</div>
);
}
@sysoce
Copy link

sysoce commented Mar 11, 2020

Ok, thank you very much for clearing my mind. I see now that it was intentional.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment