import React from 'react';
import { Insight } from './insight';

type TProps = {};

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