import React from 'react';
import { Demographics } from './demographics';

type TProps = {};

export const YoutubeDemographics: React.FC<TProps> = () => {
  return <Demographics />;
};
