From ee1ba7929bc8c0a5c200c1cb719c661fca64613a Mon Sep 17 00:00:00 2001 From: Steve Kinney Date: Sun, 29 Sep 2024 16:53:45 -0600 Subject: [PATCH] Add stubbed functions for arithmetic --- examples/basic-math/src/arithmetic.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/examples/basic-math/src/arithmetic.js b/examples/basic-math/src/arithmetic.js index e69de29..ae36902 100644 --- a/examples/basic-math/src/arithmetic.js +++ b/examples/basic-math/src/arithmetic.js @@ -0,0 +1,7 @@ +export const add = () => {}; + +export const subtract = () => {}; + +export const multiply = () => {}; + +export const divide = () => {};