sandbox-react/api-with-paging/src/pages/home.jsx

14 lines
187 B
JavaScript

import React from 'react';
import ApiPaging from '../components/api-paging';
const Home = () => {
return (
<>
<p>Home</p>
<ApiPaging />
</>
);
}
export default Home