Dispatcharr/frontend/src/pages/StreamProfiles.js

8 lines
212 B
JavaScript

import React from "react";
import StreamProfilesTable from "../components/tables/StreamProfilesTable";
const StreamProfilesPage = () => {
return <StreamProfilesTable />;
};
export default StreamProfilesPage;