File size: 366 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import { Comp } from '../components/slow-component'
import { AcademicCapIcon as A } from '@heroicons/react/20/solid'
import { AcademicCapIcon as B } from '@heroicons/react/24/outline'
import { AcademicCapIcon as C } from '@heroicons/react/24/solid'

export default function Page() {
  return (
    <>
      <A />
      <B />
      <C />
      <Comp />
    </>
  )
}