next.js/test/development/basic/barrel-optimization/fixture/app/mui/page.js
page.js14 lines283 B
import { Button } from '@mui/material'
import { Typography } from '@mui/material'

export default function Page() {
  return (
    <div>
      <Button id="button">button</Button>
      <Typography id="typography" variant="h1">
        typography
      </Typography>
    </div>
  )
}
Quest for Codev2.0.0
/
SIGN IN