woocommerce/plugins/woocommerce-admin/client/activity-panel/panels/setup-tasks/setup-tasks-panel.tsx

21 lines
337 B
TypeScript
Raw Normal View History

2022-06-01 17:10:20 +00:00
/**
* Internal dependencies
*/
import { TaskLists } from '~/task-lists';
2022-06-01 17:10:20 +00:00
type QueryTypeProps = {
query: {
task?: string;
};
};
export const SetupTasksPanel = ( { query }: QueryTypeProps ) => {
return (
<div className="woocommerce-setup-panel">
<TaskLists query={ query } />
2022-06-01 17:10:20 +00:00
</div>
);
};
export default SetupTasksPanel;