export const getItem = createAsync("THUNKS_BLOGS_QIITA_GET_ITEM", async (name: string) => {
  try {
    const item = await callItem(name);
    return item;
  } catch (error) {