UNPKG
fully-react
Version:
latest (0.0.2)
0.0.2
React Server for Vite
github.com/cyco130/vite-rsc
cyco130/vite-rsc
fully-react
/
src
/
client
/
router
/
context.ts
7 lines
(4 loc)
•
177 B
text/typescript
View Raw
1
2
3
4
5
6
7
"use client"
;
import
{ createContext }
from
"react"
;
import
{
RouterAPI
}
from
"./router-api"
;
export
const
routerContext =
/*#__PURE__*/
createContext<
RouterAPI
>({}
as
any
);