UNPKG
@sid-hq/sid
Version:
latest (3.1.0)
3.1.0
3.0.2
3.0.1
3.0.0
1.0.0-alpha.3
1.0.0-alpha.2
1.0.0-alpha.1
@sid-hq/sid
/
dist
/
esm
/
components
/
App.d.ts
7 lines
(6 loc)
•
157 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
React
from
'react'
;
type
Props
= {
value
?:
number
; };
declare
const
MyCounter
:
(
{ value }:
Props
) =>
React
.
JSX
.
Element
;
export
default
MyCounter
;