You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 line
257B

  1. import React from 'react'
  2. import style from './test.module.css'
  3. const test = () => {
  4. return (
  5. <div>
  6. <h1 className={style.jumbo}>Hello World!</h1>
  7. <h1 className="jumbo">Hello World!</h1>
  8. </div>
  9. )
  10. }
  11. export default test;