website/src/pages/projects/index.tsx

13 lines
345 B
TypeScript

import React from 'react';
import Navbar from '../../components/navbar';
import Item from '../../components/item';
export default (): JSX.Element => (
<>
<Navbar />
<Item title='Shlink' subtitle='subtitle' to='test' />
<Item title='hello world' subtitle='subtitle' />
<Item title='hello world' subtitle='subtitle' />
</>
);