1
0
Fork 0
mirror of https://github.com/voltbonn/qrcode.volt.link.git synced 2024-09-29 13:26:01 +00:00
qrcode.volt.link/src/pages/App.js

20 lines
513 B
JavaScript
Raw Normal View History

2021-06-30 00:23:43 +00:00
import classes from './App.module.css'
import Localized from '../fluent/Localized.js'
import Generator from './Generator.js'
2021-06-30 00:23:43 +00:00
function App() {
return (<>
<div className={classes.app}>
<Generator />
2021-06-30 00:23:43 +00:00
</div>
<footer>
<a href="mailto:thomas.rosen@volteuropa.org"><Localized id="contact" /></a>
&nbsp; &nbsp;
<a href="https://github.com/voltbonn/qrcode.volt.link" target="_blank" rel="noreferrer"><Localized id="source_code" /></a>
</footer>
</>)
}
export default App