1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
| import { Some, thing } from 'somewhere'
import style from '../style/main.scss'
function SomeFunction(arg1, arg2, arg3) { if (arg1 == arg2 && arg1 == arg3) { console.log(`${arg1} == ${arg3}`); console.log('Wow'); } return 1; }
class ThisIsClass extends Some { constructor(props) { }
usefulFunction() { return 1; } }
|