mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2026-07-29 07:01:52 +00:00
Created more components for the short URLs list
This commit is contained in:
13
src/short-urls/ShortUrls.js
Normal file
13
src/short-urls/ShortUrls.js
Normal 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user