Created more components for the short URLs list

This commit is contained in:
Alejandro Celaya
2018-06-17 10:59:04 +02:00
parent 853212b419
commit 6587a08ed1
8 changed files with 143 additions and 20 deletions

View File

@@ -0,0 +1,13 @@
import React from 'react';
import SearchBar from './SearchBar';
import ShortUrlsList from './ShortUrlsList';
import './ShortUrls.scss';
export default function ShortUrls(props) {
return (
<div className="short-urls-container">
<div className="form-group"><SearchBar /></div>
<ShortUrlsList {...props} />
</div>
);
}