fix prettier config

This commit is contained in:
Michael Peters 2023-01-09 14:10:05 -08:00
parent 4b564c6b50
commit 5b418c4f00
2 changed files with 4 additions and 4 deletions

View File

@ -1,8 +1,8 @@
import { doWork } from "./module.js"; import { doWork } from './module.js';
function createComponent() { function createComponent() {
const elem = document.createElement("div"); const elem = document.createElement('div');
elem.innerText = "Hello, Webpack"; elem.innerText = 'Hello, Webpack';
doWork(); doWork();
return elem; return elem;
} }

View File

@ -1,3 +1,3 @@
export function doWork() { export function doWork() {
console.log("doing some major work right now B)"); console.log('doing some major work right now B)');
} }