turkmen-expo/components/shared/news-inner.tsx

10 lines
176 B
TypeScript

import { FC } from 'react';
interface Props {
className?: string;
}
export const NewsInner: FC<Props> = ({ className }) => {
return <div className={className}></div>;
};