UNPKG
use-minimal-fetch
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
A lightweight useFetch hook with Axios wrapper for React apps
use-minimal-fetch
/
dist
/
main.js
7 lines
(6 loc)
•
278 B
JavaScript
View Raw
1
2
3
4
5
6
7
import
{ jsx
as
_jsx }
from
"react/jsx-runtime"
;
import
{
StrictMode
}
from
'react'
;
import
{ createRoot }
from
'react-dom/client'
;
import
'./index.css'
;
import
App
from
'./App'
;
createRoot
(
document
.
getElementById
(
'root'
)).
render
(
_jsx
(
StrictMode
, {
children
:
_jsx
(
App
, {}) }));