ぼざクリ タグ広場 https://hub.nizika.monster
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.
 
 
 
 
 
 

10 lines
194 B

  1. import React from 'react'
  2. type Props = { children: React.ReactNode }
  3. export default ({ children }: Props) => (
  4. <div className="p-4 w-full md:w-64 md:h-full">
  5. {children}
  6. </div>)