mirror of
https://github.com/status-im/react-native.git
synced 2025-01-09 17:15:54 +00:00
11449359e5
Summary: When packager is running, visiting localhost:8081 produces ugly 404 "GET / not found" This diff adds a simple index.html page that has a title and link to documentation. It's a super tiny detail, but I hope it makes things a little nicer. Improvements are welcome. Maybe we could include an offline copy of React Native's docs website? Reviewed By: vjeux Differential Revision: D3341242 fbshipit-source-id: c8cd4b647e69eb520ea8bc978bea070551225912
11 lines
217 B
HTML
11 lines
217 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>React Native</title>
|
|
</head>
|
|
<body>
|
|
<p>React Native packager is running.</p>
|
|
<p><a href="http://facebook.github.io/react-native/">Visit documentation</a></p>
|
|
</body>
|
|
</html>
|