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