mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-14 08:36:22 +08:00
bff8ca6178
Co-authored-by: Simon He <57086651+Simon-He95@users.noreply.github.com>
Affine Official Workspace Component
This component need specific configuration to work properly.
Configuration
SWR
Each component use SWR to fetch data from the API. You need to provide a configuration to SWR to make it work.
const Wrapper = () => {
return (
<AffineSWRConfigProvider>
<Component />
</AffineSWRConfigProvider>
);
};