mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-21 03:56:23 +08:00
c9a7744270
(cherry picked from commit d88a21d24a)
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>
);
};