@repl1307/zephyr-ui
Version:
A frontend library that simplifies working with vanilla JS, while retaining flexibility and speed.
28 lines (27 loc) • 559 B
JavaScript
/*!
* zephyr-ui v1.1.3
* (c) 2025 repl1307
* Released under the MIT License
*/
import Button from '../lib/core/Button';
import Box from '../lib/core/Box';
import Select from '../lib/core/Select';
import { Table, TableRow, TableCell } from '../lib/core/Table';
import Root from '../lib/core/Root';
import UI from '../lib/UI';
import Link from '../lib/core/Link';
import Canvas from '../lib/core/Canvas';
import Image from '../lib/core/Image';
export {
Image,
Link,
Canvas,
Root,
UI,
Button,
Box,
Select,
Table,
TableRow,
TableCell
};