From 346082ac10d6b5a2ba8a1a444d29e5221fe5a9c8 Mon Sep 17 00:00:00 2001 From: Tareq Hasan Date: Thu, 11 Jan 2024 13:38:23 +0600 Subject: [PATCH] Bump version to v0.3.4 --- package.json | 4 ++-- src/App.tsx | 25 +------------------------ 2 files changed, 3 insertions(+), 26 deletions(-) diff --git a/package.json b/package.json index 50fac3e..95f6f93 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@wedevs/tail-react", - "version": "0.3.3", + "version": "0.3.4", "description": "A React UI component library based on Tailwind CSS", "author": "Tareq Hasan", "license": "MIT", @@ -78,4 +78,4 @@ "vite": "^4.4.5", "vite-plugin-dts": "^3.4.0" } -} +} \ No newline at end of file diff --git a/src/App.tsx b/src/App.tsx index 0f9bb00..e39fcc1 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,28 +1,5 @@ -import { useState } from 'react'; -import { TextField, Textarea } from '.'; - const App = () => { - const [value, setValue] = useState(''); - - return ( -
- setValue(value)} - onBlur={() => console.log('on blur')} - onFocus={() => console.log('on focus')} - /> - -