import React from 'react';
import styles from './Highlight.module.css';

export default function Highlight({children}) {
    return(
        <span className={styles.span}>
            {children}
        </span>
    );
}