Skip to content

Instantly share code, notes, and snippets.

@JWLangford
Created October 4, 2022 07:21
Show Gist options
  • Save JWLangford/f169f29581ada4c43c3006ca2d53e579 to your computer and use it in GitHub Desktop.
Save JWLangford/f169f29581ada4c43c3006ca2d53e579 to your computer and use it in GitHub Desktop.
import { messageFunc, userFunc, newUserFunc } from "./components";
export const runServer = () => {
console.log(messageFunc("Hello"));
console.log(userFunc("Jesse"));
console.log(newUserFunc("Jesse Again"));
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment