Commit 19b150fc authored by wildfirecode's avatar wildfirecode

m

parent 1e6756c4
import Foo from "./Foo";
export default class Bar {
constructor () {
console.log('im bar')
createFoo():Foo {
return new Foo()
}
}
\ No newline at end of file
export default class Foo {
constructor () {
log() {
console.log('im foo')
}
}
\ No newline at end of file
// export default function (num:number) {
// return Math.round(num)
// }
import Foo from "./Foo";
import Bar from "./Bar";
export {
Foo,Bar
Bar
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment