Skip to content

Commit

Permalink
Bump version to v0.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
tareq1988 committed Jan 11, 2024
1 parent 55e6a5a commit 346082a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 26 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -78,4 +78,4 @@
"vite": "^4.4.5",
"vite-plugin-dts": "^3.4.0"
}
}
}
25 changes: 1 addition & 24 deletions src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,28 +1,5 @@
import { useState } from 'react';
import { TextField, Textarea } from '.';

const App = () => {
const [value, setValue] = useState('');

return (
<div className="p-6 space-y-4">
<TextField
label="Label"
value={value}
onChange={(value) => setValue(value)}
onBlur={() => console.log('on blur')}
onFocus={() => console.log('on focus')}
/>

<Textarea
label="Label"
value={value}
onChange={(value) => setValue(value)}
onBlur={() => console.log('on blur')}
onFocus={() => console.log('on focus')}
/>
</div>
);
return <div className="p-6 space-y-4"></div>;
};

export default App;

0 comments on commit 346082a

Please sign in to comment.