vj-ui-components
Version:
A collection of beautiful, customizable React UI components including versatile navigation with dual layout support (sidebar/top), stylish input fields with icon support, advanced search with recommendations and autocomplete, elegant modals with animation
39 lines (36 loc) • 766 B
JavaScript
import Navbar from './Navbar.jsx';
import Input from './Input.jsx';
import Search from './Search.jsx';
import Modal from './Modal.jsx';
import Loader from './Loader.jsx';
import Tags, { TagCollections } from './Tags.jsx';
import Skeleton, {
SkeletonCard,
SkeletonTable,
SkeletonList,
SkeletonProfile,
SkeletonImage
} from './Skeleton.jsx';
import './Navbar.css';
import './Input.css';
import './Search.css';
import './Modal.css';
import './Loader.css';
import './Tags.css';
import './Skeleton.css';
export default Navbar;
export {
Navbar,
Input,
Search,
Modal,
Loader,
Tags,
TagCollections,
Skeleton,
SkeletonCard,
SkeletonTable,
SkeletonList,
SkeletonProfile,
SkeletonImage
};