import { handleFetch } from './helpers'; import { DynamicValueTag } from '../types/api'; export default class DataApi { public static async getDynamicTags(): Promise { const response = await handleFetch('/items/cmsDynamicValueTag'); return response.json(); } }