mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-17 18:21:28 +10:00
added markdown, organized templates, fixed email overflow issue in pikachu
This commit is contained in:
22
src/shared/MarkdownHelpText.js
Normal file
22
src/shared/MarkdownHelpText.js
Normal file
@ -0,0 +1,22 @@
|
||||
import React from 'react';
|
||||
|
||||
const MarkdownHelpText = ({ className }) => {
|
||||
return (
|
||||
<div className={className}>
|
||||
<p className="text-gray-800 text-xs">
|
||||
You can use{' '}
|
||||
<a
|
||||
className="text-blue-600 hover:underline"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
href="https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet"
|
||||
>
|
||||
GitHub Flavored Markdown
|
||||
</a>{' '}
|
||||
to style this section of text.
|
||||
</p>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default MarkdownHelpText;
|
||||
Reference in New Issue
Block a user