chore(release): 0.4.0
[risinglegends.git] / src / server / views / components / explore-pane.ts
1 export function ExplorePane(townId: number, contents: string): string {
2   return `<section id="explore" class="tab active" style="background-image: url('/assets/img/map/${townId}.jpeg')" hx-swap-oob="true">
3   ${contents}
4 </section>`;
5 }