11 lines
158 B
React
11 lines
158 B
React
import React from 'react'
|
|
import HomeSections from "./HomeSections";
|
|
|
|
export default function Home() {
|
|
return (
|
|
<>
|
|
<HomeSections />
|
|
</>
|
|
)
|
|
}
|