mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-09 15:05:35 +00:00
9 lines
215 B
TypeScript
9 lines
215 B
TypeScript
import { ReactNode } from 'react';
|
|
import styles from './quotes.module.scss';
|
|
|
|
const Quotes = ({ children }: { children: ReactNode }) => (
|
|
<p className={styles['quotes']}>{children}</p>
|
|
);
|
|
|
|
export default Quotes;
|