mirror of
https://github.com/developit/microbundle.git
synced 2026-01-25 14:06:50 +00:00
8 lines
133 B
JavaScript
8 lines
133 B
JavaScript
import './two.css';
|
|
|
|
export default function() {
|
|
const el = document.createElement('div');
|
|
el.className = 'testing';
|
|
return el;
|
|
}
|