
- Removed notes - Updated readme - DB - Updated initial db schema - Updated db seed - Created source, station, and tag models - Libs - Create content source importer - UI - Added content source UI & routes - Updated page layout - Created <Breadcrumbs> component
8 lines
126 B
TypeScript
8 lines
126 B
TypeScript
import { Outlet } from "@remix-run/react";
|
|
|
|
export default function SourceLayout() {
|
|
return (
|
|
<Outlet />
|
|
);
|
|
}
|