0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-09 11:32:39 +00:00

Move import to be adjacent to existing requires

This commit is contained in:
G.Ambatte
2024-10-29 16:36:49 +13:00
parent f5954b03f2
commit f1bebe3895

View File

@@ -18,6 +18,8 @@ const { printCurrentBrew } = require('../../../shared/helpers.js');
const Themes = require('themes/themes.json'); const Themes = require('themes/themes.json');
import { safeHTML } from './safeHTML.js';
const PAGE_HEIGHT = 1056; const PAGE_HEIGHT = 1056;
const INITIAL_CONTENT = dedent` const INITIAL_CONTENT = dedent`
@@ -28,7 +30,6 @@ const INITIAL_CONTENT = dedent`
<base target=_blank> <base target=_blank>
</head><body style='overflow: hidden'><div></div></body></html>`; </head><body style='overflow: hidden'><div></div></body></html>`;
import { safeHTML } from './safeHTML.js';
//v=====----------------------< Brew Page Component >---------------------=====v// //v=====----------------------< Brew Page Component >---------------------=====v//
const BrewPage = (props)=>{ const BrewPage = (props)=>{