11 lines
188 B
JavaScript
11 lines
188 B
JavaScript
|
/**
|
||
|
* test to import things
|
||
|
*/
|
||
|
export class DashboardStuff{
|
||
|
sayHi(){
|
||
|
console.log('hiiiiiiii! from dashboard stuff');
|
||
|
}
|
||
|
sayHo(){
|
||
|
console.log('hoooo');
|
||
|
}
|
||
|
};
|