save this to stripe work as well
This commit is contained in:
parent
bb1833aba1
commit
5e43d985c1
4 changed files with 31 additions and 0 deletions
14
juntekim_frontend/app/Youtube/my_editing_setup/page.tsx
Normal file
14
juntekim_frontend/app/Youtube/my_editing_setup/page.tsx
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
import fs from "fs";
|
||||
import path from "path";
|
||||
import MarkdownRenderer from "../../components/MardownRenderer";
|
||||
|
||||
export default function YoutubePage() {
|
||||
const filePath = path.join(process.cwd(), "app/Youtube/robot_vaccume_only_starts_when_I_leave_the_house/script.md");
|
||||
const markdown = fs.readFileSync(filePath, "utf8");
|
||||
|
||||
return (
|
||||
<div className="p-8">
|
||||
<MarkdownRenderer content={markdown} />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
1
juntekim_frontend/app/Youtube/my_editing_setup/script.md
Normal file
1
juntekim_frontend/app/Youtube/my_editing_setup/script.md
Normal file
|
|
@ -0,0 +1 @@
|
|||
my editing_set_up requires one windows computer so i can carry on using one desk
|
||||
14
juntekim_frontend/app/Youtube/my_new_dev_setup/page.tsx
Normal file
14
juntekim_frontend/app/Youtube/my_new_dev_setup/page.tsx
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
import fs from "fs";
|
||||
import path from "path";
|
||||
import MarkdownRenderer from "../../components/MardownRenderer";
|
||||
|
||||
export default function YoutubePage() {
|
||||
const filePath = path.join(process.cwd(), "app/Youtube/robot_vaccume_only_starts_when_I_leave_the_house/script.md");
|
||||
const markdown = fs.readFileSync(filePath, "utf8");
|
||||
|
||||
return (
|
||||
<div className="p-8">
|
||||
<MarkdownRenderer content={markdown} />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
2
juntekim_frontend/app/Youtube/my_new_dev_setup/script.md
Normal file
2
juntekim_frontend/app/Youtube/my_new_dev_setup/script.md
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
Write about my dev set up that uses ubunutu as the devcontainer, i just ssh
|
||||
|
||||
Loading…
Add table
Reference in a new issue