open-story-teller/story-player-web/components/StoryPlayer.js
anthony@rabine.fr 0ad614699c
Some checks failed
build-story-editor / build_linux (push) Has been cancelled
build-story-editor / build_win32 (push) Has been cancelled
Deploy / deploy (push) Has been cancelled
dedicated directory for story web version
2025-01-10 22:04:39 +01:00

27 lines
719 B
JavaScript

import { html } from 'htm/preact';
import eventBus from '../classes/event-bus.js';
import { useState } from 'preact/hooks';
function StoryPlayer() {
return html`
<style>
</style>
<div style="width: 400px; height: 500px;">
<div class="block fixed" style="width: 320px; height: 240px;">
</div>
<div style="display: flex; ">
<div class="block accent btn">⇦</div>
<div class="block accent btn">✓</div>
<div class="block accent btn">⇨</div>
<div class="block accent btn">⏎</div>
</div>
</div>
`;
}
export default StoryPlayer;