6 lines
135 B
JavaScript
6 lines
135 B
JavaScript
import styles from "./Section.module.css";
|
|
|
|
export const Section = (props) => (
|
|
<section {...props} className={styles.section} />
|
|
);
|