UNPKG

oda-framework

Version:

It's an ES Progressive Framework based on the technology of Web Components and designed especially for creating custom UI/UX of any complexity for web and cross-platform PWA mobile applications.

39 lines (34 loc) 1.07 kB
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <meta name="description" content="ODA Framework - designed for rapid development of websites, mobile PWAs and web applications using web components technology - https://odajs.org/" /> <title>oda-code-editor</title> </head> <body> <oda-tester> <oda-code-editor id="editor" mode="html" theme="cobalt" style="flex: 1" enable-breakpoints></oda-code-editor> </oda-tester> <script type="module"> import '../../../oda.js'; import './code-editor.js'; setTimeout(() => { editor.src = ` <style> html, body { height: 100%; margin: 0; padding: 0; } html { box-sizing: border-box; } *, *::before, *::after { box-sizing: inherit; } </style> ` }, 300) </script> </body> </html>