| 1 |
/** |
| 2 |
* Content Planner Tab Component |
| 3 |
* |
| 4 |
* Wrapper component for ContentBriefGenerator in AI Tools page |
| 5 |
* |
| 6 |
* @package ThinkRank |
| 7 |
* @since 1.0.0 |
| 8 |
*/ |
| 9 |
|
| 10 |
import ContentBriefGenerator from '../content-brief/ContentBriefGenerator'; |
| 11 |
|
| 12 |
/** |
| 13 |
* Content Planner Tab Component |
| 14 |
* |
| 15 |
* This is a thin wrapper around the existing ContentBriefGenerator component |
| 16 |
* to maintain the same functionality while integrating it into the AI Tools tabbed interface |
| 17 |
*/ |
| 18 |
const ContentPlannerTab = () => { |
| 19 |
return <ContentBriefGenerator />; |
| 20 |
}; |
| 21 |
|
| 22 |
export default ContentPlannerTab; |
| 23 |
|