Skip to content

Commit 346082a

Browse files
committed
Bump version to v0.3.4
1 parent 55e6a5a commit 346082a

File tree

2 files changed

+3
-26
lines changed

2 files changed

+3
-26
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@wedevs/tail-react",
3-
"version": "0.3.3",
3+
"version": "0.3.4",
44
"description": "A React UI component library based on Tailwind CSS",
55
"author": "Tareq Hasan",
66
"license": "MIT",
@@ -78,4 +78,4 @@
7878
"vite": "^4.4.5",
7979
"vite-plugin-dts": "^3.4.0"
8080
}
81-
}
81+
}

src/App.tsx

Lines changed: 1 addition & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,5 @@
1-
import { useState } from 'react';
2-
import { TextField, Textarea } from '.';
3-
41
const App = () => {
5-
const [value, setValue] = useState('');
6-
7-
return (
8-
<div className="p-6 space-y-4">
9-
<TextField
10-
label="Label"
11-
value={value}
12-
onChange={(value) => setValue(value)}
13-
onBlur={() => console.log('on blur')}
14-
onFocus={() => console.log('on focus')}
15-
/>
16-
17-
<Textarea
18-
label="Label"
19-
value={value}
20-
onChange={(value) => setValue(value)}
21-
onBlur={() => console.log('on blur')}
22-
onFocus={() => console.log('on focus')}
23-
/>
24-
</div>
25-
);
2+
return <div className="p-6 space-y-4"></div>;
263
};
274

285
export default App;

0 commit comments

Comments
 (0)