website/src/pages/projects/index.tsx

13 lines
345 B
TypeScript
Raw Normal View History

2020-11-28 00:39:21 +00:00
import React from 'react';
2020-11-27 16:08:32 +00:00
import Navbar from '../../components/navbar';
2020-11-28 00:39:21 +00:00
import Item from '../../components/item';
2020-11-27 16:08:32 +00:00
2020-11-27 21:12:09 +00:00
export default (): JSX.Element => (
2020-11-27 16:08:32 +00:00
<>
<Navbar />
2020-11-28 00:39:21 +00:00
<Item title='Shlink' subtitle='subtitle' to='test' />
<Item title='hello world' subtitle='subtitle' />
<Item title='hello world' subtitle='subtitle' />
2020-11-27 16:08:32 +00:00
</>
2020-11-27 21:12:09 +00:00
);