Skip to content
Dashboard

Flags SDK 3.0

import { flag } from 'flags/next';
export const exampleFlag = flag({
key: 'example-flag',
decide() {
return false;
},
});

Importing and evaluating flags using the Flags SDK.

Ready to deploy?