Updated fetch hook API.
This commit is contained in:
7
components/common/Tag.js
Normal file
7
components/common/Tag.js
Normal file
@@ -0,0 +1,7 @@
|
||||
import React from 'react';
|
||||
import classNames from 'classnames';
|
||||
import styles from './Tag.module.css';
|
||||
|
||||
export default function Tag({ className, children }) {
|
||||
return <span className={classNames(styles.tag, className)}>{children}</span>;
|
||||
}
|
||||
Reference in New Issue
Block a user