Dmytr1K/mini-game-set

View on GitHub
src/utilities/get-welcome-phrase.js

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
// @ts-check

/**
 * @return {string}
 */
const getWelcomePhrase = () => {
  const welcomePhrase = `Welcome to the Mini-games!`;

  return welcomePhrase;
};

export default getWelcomePhrase;