diff --git a/snippets/Ticker.md b/snippets/Ticker.md
index e319fb69b..06373cd78 100644
--- a/snippets/Ticker.md
+++ b/snippets/Ticker.md
@@ -2,45 +2,37 @@
Renders a ticker component.
-- The ticker state is initially set to zero
-- When the `Tick!` button is clicked, `timer` is incremented periodically at the given `interval`
-- When the `Reset` button is clicked, the value of the timer is set to zero and the `setInterval` is cleared
-- The `setInterval` is cleared once the desired `time` is reached
-- `time` and `interval` are the required props
+Use the `React.useState()` hook to initialize the `ticker` state variable to `0`.
+Define two methods, `tick` and `reset`, that will periodically increment `timer` based on `interval` and reset `interval` respectively.
+Return a `