Files
AFFiNE/packages/frontend/core/src/components/affine
2024-04-29 02:27:21 +00:00
..
2024-04-17 15:09:09 +08:00
2024-04-17 15:09:09 +08:00
2024-04-17 15:09:09 +08:00
2024-04-17 15:09:09 +08:00
2024-04-17 15:09:09 +08:00

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>
  );
};