Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/itokun99/vokarenda
https://github.com/itokun99/vokarenda
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/itokun99/vokarenda
- Owner: itokun99
- Created: 2024-11-13T00:36:05.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2024-11-13T00:39:27.000Z (about 2 months ago)
- Last Synced: 2024-11-13T00:56:21.601Z (about 2 months ago)
- Language: TypeScript
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Vokarenda: Full Calendar Component built with `shadcn/ui`
## Overview
Forked from https://github.com/deiondz/shadcn-fullcalender, and setup with vite.js for create npm package, Thanks [@Deion_Dz](https://x.com/Deion_Dz) for creating base full-calendar component
## Installation
First, add `itokun99/vokarenda` package into project
```
npm install @itokun99/vokarenda
```## Example
Minimal implementation in `src/index.tsx`
```
import { newevents } from "@/data/events";
import { Vokarenda } from "@itokun99/vokarenda";
import React from "react";
import ReactDOM from "react-dom/client";function App() {
return (
);
}ReactDOM.createRoot(document.getElementById("root")!).render();
```