Created short URLs component

This commit is contained in:
Alejandro Celaya
2018-07-20 22:32:50 +02:00
parent 3b104b0ead
commit b2fa86a917
6 changed files with 16 additions and 5 deletions

View File

@@ -0,0 +1,5 @@
import React from 'react';
export default function CreateShortUrl() {
return <div className="short-urls-container">Create short URL</div>
}

View File

@@ -2,7 +2,6 @@ import React from 'react';
import { connect } from 'react-redux';
import Paginator from './Paginator';
import SearchBar from './SearchBar';
import './ShortUrls.scss';
import ShortUrlsList from './ShortUrlsList';
export function ShortUrls(props) {

View File

@@ -1,3 +0,0 @@
.short-urls-container {
padding: 30px 30px 30px 20px;
}