JSFiddle - React, Tailwind, and code Playground

by Destan Sarpkaya

JavaScript

function someFunc() {
  console.log('log from someFunc')
}

function anotherFunction() {
  console.log('log from anotherFunction')
  someFUnc()
}


console.log('main')