import React from 'react' import { useTranslation } from 'react-i18next' const ActionList = () => { const { t } = useTranslation() return (
{t('plugin.detailPanel.actionNum', { num: 3 })}
Notion Page Search
A tool for performing a Google SERP search and extracting snippets and webpages.Input should be a search query.
) } export default ActionList