2
0
mirror of https://github.com/status-im/consul.git synced 2025-03-02 14:20:39 +00:00

9 lines
201 B
JavaScript
Raw Normal View History

import Helper from '@ember/component/helper';
import { css } from '@lit/reactive-element';
export default class ConsoleLogHelper extends Helper {
compute([str], hash) {
return css([str]);
}
}