UNPKG
@ntragas/pouncejstest
Version:
latest (1.0.0)
1.0.0
A collection of UI components from Panther labs
github.com/panther-labs/pounce
panther-labs/pounce
@ntragas/pouncejstest
/
dist
/
esm
/
components
/
utils
/
Input
/
InputContext.js
7 lines
•
214 B
JavaScript
View Raw
1
2
3
4
5
6
7
import
React
from
'react'
;
export
var
InputContext
=
/*#__PURE__*/
React
.
createContext
({
variant
:
'outline'
});
export
var
useInputContext =
function
useInputContext
(
) {
return
React
.
useContext
(
InputContext
); };