import React from 'react'; import './Topline.css'; interface ToplineProps { children: React.ReactNode; type: string; } const Topline = (props: ToplineProps) => (
{props.children}
); export default Topline;