language-flash
v1.0.6
Published
I built this app for studying Mandarin vocab words, but it can easily be tailored to any other language you're able to get data for
Downloads
3
Readme
Twitter thread describing the project
I built this app for studying Mandarin vocab words, but it can easily be tailored to any other language you're able to get data for
just import it and pass your data through props
:
<script>
import LanguageFlash from 'language-flash'
// data should be an array of objects with the following structure:
// { word: '', wordModeTwo: '', wordModeThree: '', meaning: '' }
const promise = fetch('/some/data').then(res => res.json())
</script>
{#await promise}
<LanguageFlash />
{:then vocabData}
<LanguageFlash vocabData={vocabData} />
{:catch error}
<p style="color: red">{error.message}</p>
{/await}