# thinkrank/1.0.0/src/admin/components/ai-tools/ContentPlannerTab.js

ThinkRank AI SEO – AI SEO Plugin for WordPress: Schema, XML Sitemaps, Meta Tags, Search Console &amp; Local SEO, version 1.0.0. 23 lines.

- Page: https://pluginprobe.com/plugins/thinkrank/1.0.0/code/src/admin/components/ai-tools/ContentPlannerTab.js
- Raw: https://pluginprobe.com/plugins/thinkrank/1.0.0/raw/src/admin/components/ai-tools/ContentPlannerTab.js
- Modified: 2025-08-10T07:57:44+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/thinkrank/1.0.0/code/src/admin/components/ai-tools/ContentPlannerTab.js#L10-L20`.

```javascript
/**
 * Content Planner Tab Component
 * 
 * Wrapper component for ContentBriefGenerator in AI Tools page
 * 
 * @package ThinkRank
 * @since 1.0.0
 */

import ContentBriefGenerator from '../content-brief/ContentBriefGenerator';

/**
 * Content Planner Tab Component
 * 
 * This is a thin wrapper around the existing ContentBriefGenerator component
 * to maintain the same functionality while integrating it into the AI Tools tabbed interface
 */
const ContentPlannerTab = () => {
    return <ContentBriefGenerator />;
};

export default ContentPlannerTab;

```
