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.

OneArticleGrid.jsx 274B

1234567891011121314
  1. import React from 'react'
  2. import PropTypes from 'prop-types'
  3. const OneArticlesGrid = ({children}) => {
  4. return (
  5. <div className='grid grid-cols-1 md:grid-cols-6 gap-8'>
  6. {children}
  7. </div>
  8. )
  9. }
  10. OneArticlesGrid.propTypes = {}
  11. export default OneArticlesGrid