-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.html
21 lines (20 loc) · 1.04 KB
/
app.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<template>
<require from="./app.css"></require>
<require from="./Banner"></require>
<require from="./AboutPanel"></require>
<require from="./FeedbackPanel"></require>
<require from="./FramedLicensePlate"></require>
<require from="./AnswersTable"></require>
<div class="app">
<div class="main-container-width">
<banner in_process_count.bind="in_process_count" ></banner>
</div>
<div class="main-container-width">
<about-panel if.bind="about_panel_is_open" about_panel_is_open.bind="about_panel_is_open"></about-panel>
<feedback-panel if.bind="feedback_panel_is_open" feedback_panel_is_open.bind="feedback_panel_is_open" current_game.bind="current_game" ></feedback-panel>
</div>
<div class="main-container-width">
<framed-license-plate settings.bind="settings" current_game.bind="current_game" puzzle_answers.bind="puzzle_answers" elapsed_seconds.bind="elapsed_seconds" hint.bind="hint" ></framed-license->
</div>
</div>
</template>