Toggle navigation
Toggle navigation
This project
Loading...
Sign in
한우준
/
Straight-Up
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
MrMirror21
2020-12-10 03:01:44 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
3db03f1c01fac959feac15714f0818056cc08d60
3db03f1c
1 parent
766a6735
fogotten file for previous commit
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
0 deletions
straight-up/src/Result.js
straight-up/src/Result.js
0 → 100644
View file @
3db03f1
import
React
from
'react'
import
{
useRecoilValue
}
from
'recoil'
;
import
{
analysisResultState
}
from
'./store/Global'
;
import
Header
from
'./components/Header'
;
import
ResultContent
from
'./components/ResultContent'
;
const
Result
=
()
=>
{
const
analysisResult
=
useRecoilValue
(
analysisResultState
);
return
(
<
div
>
<
Header
/>
<
ResultContent
result
=
{
analysisResult
}
/>
<
/div>
)
}
export
default
Result
;
\ No newline at end of file
Please
register
or
login
to post a comment