16 lines
300 B
JavaScript
16 lines
300 B
JavaScript
import React from "react";
|
|
|
|
import { AddTorrent } from "./list/addTorrent";
|
|
import { Torrents } from "./list/torrents";
|
|
|
|
export const TorrentList = () => {
|
|
return (
|
|
<div className="row">
|
|
<div className="col-12">
|
|
<AddTorrent />
|
|
<Torrents />
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|