main
js 12 lines 240 Bytes
Raw
1 'use client';
2
3 import {createContext, use} from 'react';
4
5 const ClientContext = createContext(null);
6
7 function ClientReadContext() {
8 const value = use(ClientContext);
9 return <p>{value}</p>;
10 }
11
12 export {ClientContext, ClientReadContext};