Added help page and rescue component BOD-326

This commit is contained in:
Patrick Fic
2020-08-28 13:26:21 -07:00
parent 364cf6c7bb
commit ab4262c238
7 changed files with 194 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
import React from "react";
import HelpRescue from "../../components/help-rescue/help-rescue.component";
export default function HelpPage() {
return (
<div>
<HelpRescue />
</div>
);
}