import React from 'react' import { Rate } from 'antd'; import {NotePage as NotePageData} from '../../data.json' const NotePage = () => { return (

{NotePageData.title}

{NotePageData.description}

{Object.entries(NotePageData.Data).map((item,index:number)=>{ return (

{item[1].description}

{item[1].name}
) })}
) } export default NotePage