mirror of
https://github.com/Dispatcharr/Dispatcharr.git
synced 2026-01-23 02:35:14 +00:00
8 lines
212 B
JavaScript
8 lines
212 B
JavaScript
import React from "react";
|
|
import StreamProfilesTable from "../components/tables/StreamProfilesTable";
|
|
|
|
const StreamProfilesPage = () => {
|
|
return <StreamProfilesTable />;
|
|
};
|
|
|
|
export default StreamProfilesPage;
|