Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/itokun99/vokarenda


https://github.com/itokun99/vokarenda

Last synced: about 2 months ago
JSON representation

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();
```