diff options
| author | real-zephex <[email protected]> | 2024-03-17 07:08:55 +0530 |
|---|---|---|
| committer | real-zephex <[email protected]> | 2024-03-17 07:08:55 +0530 |
| commit | bc2963f9e76a4000e3f1747b6fa4affdebba3956 (patch) | |
| tree | 39fa19bbe792b3b90b526ef5460545c76bca3dcf /src/app/info/page.js | |
| parent | minor fixes and feature improvements: added an indicator which shows when the... (diff) | |
| download | dramalama-bc2963f9e76a4000e3f1747b6fa4affdebba3956.tar.xz dramalama-bc2963f9e76a4000e3f1747b6fa4affdebba3956.zip | |
prettified the code :)
Diffstat (limited to 'src/app/info/page.js')
| -rw-r--r-- | src/app/info/page.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/app/info/page.js b/src/app/info/page.js index 1468652..9004ade 100644 --- a/src/app/info/page.js +++ b/src/app/info/page.js @@ -1,11 +1,11 @@ -import './info.css' +import "./info.css"; export default function Info() { return ( - <div className='infoPageContainer'> + <div className="infoPageContainer"> <p> This is the anime info page. This page will display information about the queried anime when anime id is passed along the url. </p> </div> - ) -}
\ No newline at end of file + ); +} |